1 Star 0 Fork 6

刘宗禹/openjpeg

forked from src-openEuler/openjpeg 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CVE-2016-7445.patch 657 Bytes
一键复制 编辑 原始数据 按行查看 历史
dogsheng 提交于 2019-12-25 16:00 . Package init
diff -Nur openjpeg-1.5.1_old/applications/codec/convert.c openjpeg-1.5.1/applications/codec/convert.c
--- openjpeg-1.5.1_old/applications/codec/convert.c 2019-10-14 16:21:31.717000000 +0800
+++ openjpeg-1.5.1/applications/codec/convert.c 2019-10-14 16:22:23.444000000 +0800
@@ -1630,8 +1630,10 @@
if( !have_wh)
{
s = skip_int(s, &ph->width);
+ if(s == NULL || *s == 0) return;
s = skip_int(s, &ph->height);
+ if(s == NULL || *s == 0) return;
have_wh = 1;
@@ -1643,6 +1645,7 @@
{
/* P2, P3, P5, P6: */
s = skip_int(s, &ph->maxval);
+ if(s == NULL || *s == 0) return;
if(ph->maxval > 65535) return;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lzy_387655/openjpeg.git
git@gitee.com:lzy_387655/openjpeg.git
lzy_387655
openjpeg
openjpeg
master

搜索帮助