1 Star 0 Fork 9

wang_yue111/libpng12

forked from src-openEuler/libpng12 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CVE-2011-3026.patch 736 Bytes
一键复制 编辑 原始数据 按行查看 历史
cuibaobao 提交于 2020-05-22 17:19 . fix CVE-2011-3026
--- a/pngrutil.c 2020-05-22 15:22:29.217401425 +0800
+++ b/pngrutil.c 2020-05-22 15:29:51.151515952 +0800
@@ -361,8 +361,15 @@
/* Success (maybe) - really uncompress the chunk. */
png_size_t new_size = 0;
- png_charp text = png_malloc_warn(png_ptr,
- prefix_size + expanded_size + 1);
+ png_charp text = NULL;
+ /* Need to check for both truncation (64-bit platforms) and integer
+ * overflow.
+ */
+ if (prefix_size + expanded_size > prefix_size &&
+ prefix_size + expanded_size < 0xffffffffU)
+ {
+ text = png_malloc_warn(png_ptr, prefix_size + expanded_size + 1);
+ }
if (text != NULL)
{
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wang_yue111/libpng12.git
[email protected]:wang_yue111/libpng12.git
wang_yue111
libpng12
libpng12
master

搜索帮助