Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Issue 2084863002: Update Zlib to version 1.2.8 (Closed)

Created:
4 years, 6 months ago by jiadong.zhu
Modified:
4 years, 6 months ago
Reviewers:
gavinp, agl, khasim.mohammed
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Update Zlib to version 1.2.8 merge the latest open source zlib into chromium external projects Version 1.2.8 fixes a very rare bug in decompression. All users are encouraged to upgrade immediately. Version 1.2.8 also has these improvements: - Add new inflateGetDictionary() function - Fix bug where gzopen() immediately followed by gzclose() would write an empty file instead of an empty gzip stream. - Fix bug in gzclose() when gzwrite() runs out of memory Version 1.2.7 has many portability improvements over 1.2.6, and has these enhancements: - Fix bug in gzclose_w() when gzwrite() fails to allocate memory - Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen() - Add gzopen_w() in Windows for wide character path names - Fix type mismatch between get_crc_table() and crc_table Version 1.2.6 has many changes over 1.2.5, including these improvements: - gzread() can now read a file that is being written concurrently - gzgetc() is now a macro for increased speed - Added a 'T' option to gzopen() for transparent writing (no compression) - Added deflatePending() to return the amount of pending output - Allow deflateSetDictionary() and inflateSetDictionary() at any time in raw mode - deflatePrime() can now insert bits in the middle of the stream - ./configure now creates a configure.log file with all of the results - Added a ./configure --solo option to compile zlib with no dependency on any libraries - Fixed a problem with large file support macros - Fixed a bug in contrib/puff - Many portability improvements BUG=610615 R=gavinp@chromium.org Committed: https://crrev.com/ca1c569cff20aa43a42816791744d847c7d788de Cr-Commit-Position: refs/heads/master@{#401538}

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3149 lines, -1097 lines) Patch
M AUTHORS View 1 chunk +1 line, -0 lines 0 comments Download
M net/spdy/spdy_framer_test.cc View 11 chunks +21 lines, -22 lines 0 comments Download
M net/spdy/spdy_session_unittest.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/zlib/README.chromium View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/zlib/adler32.c View 5 chunks +39 lines, -29 lines 0 comments Download
M third_party/zlib/compress.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/zlib/contrib/minizip/crypt.h View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/zlib/contrib/minizip/ioapi.h View 4 chunks +9 lines, -1 line 0 comments Download
M third_party/zlib/contrib/minizip/ioapi.c View 5 chunks +17 lines, -5 lines 0 comments Download
M third_party/zlib/contrib/minizip/iowin32.c View 10 chunks +92 lines, -13 lines 0 comments Download
M third_party/zlib/contrib/minizip/miniunz.c View 8 chunks +25 lines, -13 lines 0 comments Download
M third_party/zlib/contrib/minizip/minizip.c View 8 chunks +26 lines, -13 lines 0 comments Download
M third_party/zlib/contrib/minizip/mztools.h View 1 chunk +6 lines, -0 lines 0 comments Download
M third_party/zlib/contrib/minizip/mztools.c View 3 chunks +17 lines, -7 lines 0 comments Download
M third_party/zlib/contrib/minizip/unzip.h View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/zlib/contrib/minizip/unzip.c View 7 chunks +12 lines, -12 lines 0 comments Download
M third_party/zlib/contrib/minizip/zip.c View 7 chunks +9 lines, -6 lines 0 comments Download
M third_party/zlib/crc32.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/zlib/crc32.c View 14 chunks +33 lines, -50 lines 0 comments Download
M third_party/zlib/deflate.h View 6 chunks +8 lines, -6 lines 0 comments Download
M third_party/zlib/deflate.c View 30 chunks +194 lines, -69 lines 0 comments Download
M third_party/zlib/google.patch View 6 chunks +228 lines, -51 lines 0 comments Download
M third_party/zlib/gzguts.h View 6 chunks +90 lines, -13 lines 0 comments Download
M third_party/zlib/gzlib.c View 18 chunks +147 lines, -52 lines 0 comments Download
M third_party/zlib/gzread.c View 22 chunks +190 lines, -245 lines 0 comments Download
M third_party/zlib/gzwrite.c View 20 chunks +121 lines, -75 lines 0 comments Download
M third_party/zlib/infback.c View 4 chunks +12 lines, -4 lines 0 comments Download
M third_party/zlib/inffast.c View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/zlib/inffixed.h View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/zlib/inflate.c View 21 chunks +84 lines, -52 lines 0 comments Download
M third_party/zlib/inftrees.c View 6 chunks +15 lines, -39 lines 0 comments Download
M third_party/zlib/mixed-source.patch View 24 chunks +28 lines, -26 lines 0 comments Download
M third_party/zlib/mozzconf.h View 2 chunks +9 lines, -0 lines 0 comments Download
A third_party/zlib/simd.patch View 1 chunk +1198 lines, -0 lines 0 comments Download
M third_party/zlib/trees.c View 11 chunks +18 lines, -36 lines 0 comments Download
M third_party/zlib/uncompr.c View 1 chunk +1 line, -1 line 0 comments Download
M third_party/zlib/zconf.h View 11 chunks +142 lines, -59 lines 0 comments Download
M third_party/zlib/zlib.h View 33 chunks +273 lines, -112 lines 0 comments Download
M third_party/zlib/zutil.h View 10 chunks +41 lines, -62 lines 0 comments Download
M third_party/zlib/zutil.c View 4 chunks +16 lines, -10 lines 0 comments Download

Messages

Total messages: 20 (11 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2084863002/1
4 years, 6 months ago (2016-06-21 06:26:43 UTC) #2
commit-bot: I haz the power
Dry run: No L-G-T-M from a valid reviewer yet. CQ run can only be started ...
4 years, 6 months ago (2016-06-21 06:26:46 UTC) #4
jiadong.zhu
Hi gavin, I add macro in mozzconf to fix the Broke the Windows Debug GPU ...
4 years, 6 months ago (2016-06-21 06:34:02 UTC) #7
gavinp
lgtm, I'm firing off a dry run to look at as well.
4 years, 6 months ago (2016-06-22 14:03:27 UTC) #9
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2084863002/1
4 years, 6 months ago (2016-06-22 14:03:32 UTC) #10
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/243385)
4 years, 6 months ago (2016-06-22 16:59:18 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2084863002/1
4 years, 6 months ago (2016-06-23 02:50:39 UTC) #16
commit-bot: I haz the power
Committed patchset #1 (id:1)
4 years, 6 months ago (2016-06-23 04:22:36 UTC) #18
commit-bot: I haz the power
4 years, 6 months ago (2016-06-23 04:24:03 UTC) #20
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/ca1c569cff20aa43a42816791744d847c7d788de
Cr-Commit-Position: refs/heads/master@{#401538}

Powered by Google App Engine
This is Rietveld 408576698