CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/12 17:17:12
Modified files:
usr.sbin/smtpd : compress_gzip.c
Log message:
use inflateEnd() to tear down the inflate stream in uncompress_gzip_chunk()
the decompression path sets up the stream with inflateInit2() but the
cleanup block called deflateEnd(), mismatching the zlib inflate/deflate
APIs and leaking the stream state on every gzip queue read.
from Andrew Griffiths, ok op@
