Skip to content

Commit e61745a

Browse files
committed
Re-release
1 parent db361a0 commit e61745a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# SECURITY NOTE
44

5-
Please consider updating brotli to version 1.0.8 (latest).
5+
Please consider updating brotli to version 1.0.9 (latest).
66

7-
Version 1.0.8 contains a fix to "integer overflow" problem. This happens when "one-shot" decoding API is used (or input chunk for streaming API is not limited), input size (chunk size) is larger than 2GiB, and input contains uncompressed blocks. After the overflow happens, `memcpy` is invoked with a gigantic `num` value, that will likely cause the crash.
7+
Version 1.0.9 contains a fix to "integer overflow" problem. This happens when "one-shot" decoding API is used (or input chunk for streaming API is not limited), input size (chunk size) is larger than 2GiB, and input contains uncompressed blocks. After the overflow happens, `memcpy` is invoked with a gigantic `num` value, that will likely cause the crash.
88

99
### Introduction
1010

c/common/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
BrotliEncoderVersion methods. */
1515

1616
/* Semantic version, calculated as (MAJOR << 24) | (MINOR << 12) | PATCH */
17-
#define BROTLI_VERSION 0x1000008
17+
#define BROTLI_VERSION 0x1000009
1818

1919
/* This macro is used by build system to produce Libtool-friendly soname. See
2020
https://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
2121
*/
2222

2323
/* ABI version, calculated as (CURRENT << 24) | (REVISION << 12) | AGE */
24-
#define BROTLI_ABI_VERSION 0x1008000
24+
#define BROTLI_ABI_VERSION 0x1009000
2525

2626
#endif /* BROTLI_COMMON_VERSION_H_ */

0 commit comments

Comments
 (0)