Projects
openEuler:24.03:SP1:Everything
zlib
_service:tar_scm:backport-Fix-bug-when-gzungetc...
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:tar_scm:backport-Fix-bug-when-gzungetc-is-used-immediately-after-gzopen.patch of Package zlib
From 7dd6aa72455ef1f2aacdc28a00d1eaf632d59593 Mon Sep 17 00:00:00 2001 From: Mark Adler <madler@alumni.caltech.edu> Date: Fri, 11 Aug 2023 10:59:03 -0700 Subject: [PATCH] Fix bug when gzungetc() is used immediately after gzopen(). Reference:https://github.com/madler/zlib/commit/7dd6aa72455ef1f2aacdc28a00d1eaf632d59593 Conflict:NA --- gzread.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gzread.c b/gzread.c index 6034a2823..4168cbc88 100644 --- a/gzread.c +++ b/gzread.c @@ -443,6 +443,10 @@ int ZEXPORT gzungetc(int c, gzFile file) { return -1; state = (gz_statep)file; + /* in case this was just opened, set up the input buffer */ + if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0) + (void)gz_look(state); + /* check that we're reading and that there's no (serious) error */ if (state->mode != GZ_READ || (state->err != Z_OK && state->err != Z_BUF_ERROR))
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2