madler / zlib

A massively spiffy yet delicately unobtrusive compression library.
http://zlib.net/
Other
5.46k stars 2.41k forks source link

zlib-1.3.1, deflate.c, line 497 #962

Open xuyun018 opened 3 months ago

xuyun018 commented 3 months ago
s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS);
s->pending_buf_size = (ulg)s->lit_bufsize * 4;

应该为 s->pending_buf_size = (ulg)s->lit_bufsize * LIT_BUFS;

nmoinvaz commented 3 months ago

https://github.com/madler/zlib/commit/ac8f12c97d1afd9bafa9c710f827d40a407d3266#r137966340