1 Star 0 Fork 13

yaokai13/libtasn1

forked from src-openEuler/libtasn1 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-Fix-endless-loop-in-_asn1_check_identifier.patch 779 Bytes
一键复制 编辑 原始数据 按行查看 历史
Liquor 提交于 2020-06-06 10:39 . fix fuzz issues
From c32f0f1d3ed15e0286bc6e1757ccbe3b9f8c9cda Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tim=20R=C3=BChsen?= <[email protected]>
Date: Fri, 19 Jul 2019 13:16:27 +0200
Subject: [PATCH] Fix endless loop in _asn1_check_identifier()
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Tim Rühsen <[email protected]>
---
lib/parser_aux.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/parser_aux.c b/lib/parser_aux.c
index b182948..095204e 100644
--- a/lib/parser_aux.c
+++ b/lib/parser_aux.c
@@ -1029,7 +1029,7 @@ _asn1_check_identifier (asn1_node_const node)
p = p->right;
else
{
- while (1)
+ while (p)
{
p = _asn1_find_up (p);
if (p == node)
--
1.8.3.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaokai13/libtasn1.git
[email protected]:yaokai13/libtasn1.git
yaokai13
libtasn1
libtasn1
master

搜索帮助