1 Star 0 Fork 7

ultra_planet/zopfli

forked from src-openEuler/zopfli 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Fix-invalid-read-outsize-allocated-memory.patch 845 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 9429e20de3885c0e0d9beac23f703fce58461021 Mon Sep 17 00:00:00 2001
From: Szabolcs Berecz <[email protected]>
Date: Sun, 25 Oct 2015 22:43:25 +0100
Subject: [PATCH] Fix invalid read outsize allocated memory
The invalid read happens when compressing a 1 byte file.
---
src/zopfli/hash.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/zopfli/hash.c b/src/zopfli/hash.c
index a3b294fa..66528aa5 100644
--- a/src/zopfli/hash.c
+++ b/src/zopfli/hash.c
@@ -129,7 +129,6 @@ void ZopfliUpdateHash(const unsigned char* array, size_t pos, size_t end,
void ZopfliWarmupHash(const unsigned char* array, size_t pos, size_t end,
ZopfliHash* h) {
- (void)end;
UpdateHashValue(h, array[pos + 0]);
- UpdateHashValue(h, array[pos + 1]);
+ if (pos + 1 < end) UpdateHashValue(h, array[pos + 1]);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ultra_planet/zopfli.git
[email protected]:ultra_planet/zopfli.git
ultra_planet
zopfli
zopfli
master

搜索帮助