1 Star 0 Fork 10

dpd/python-ujson

forked from src-openEuler/python-ujson 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fix-CVE-2022-31117.patch 847 Bytes
一键复制 编辑 原始数据 按行查看 历史
huangduirong 提交于 2023-02-28 20:35 . fix CVE-2022-31117
From a68e5b61f3df39cf998911fc87fe277436839902 Mon Sep 17 00:00:00 2001
From: huangduirong <huangduirong@huawei.com>
Date: Tue, 28 Feb 2023 08:59:16 -0500
Subject: [PATCH] x
---
lib/ultrajsondec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/ultrajsondec.c b/lib/ultrajsondec.c
index cfa3be0..3e429c6 100644
--- a/lib/ultrajsondec.c
+++ b/lib/ultrajsondec.c
@@ -330,7 +330,7 @@ static FASTCALL_ATTR JSOBJ FASTCALL_MSVC decode_string ( struct DecoderState *ds
escStart = (JSUINT32 *)ds->dec->realloc(ds->escStart, newSize * sizeof(JSUINT32));
if (!escStart)
{
- ds->dec->free(ds->escStart);
+ // Don't free ds->escStart here; it gets handled in JSON_DecodeObject.
return SetError(ds, -1, "Could not reserve memory block");
}
ds->escStart = escStart;
--
2.35.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dpdwaj/python-ujson.git
git@gitee.com:dpdwaj/python-ujson.git
dpdwaj
python-ujson
python-ujson
master

搜索帮助