We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddef27b commit dfe2fcbCopy full SHA for dfe2fcb
lib/portableproplib/prop_zlib.c
@@ -87,7 +87,7 @@ prop ## type ## _internalize_from_zfile(const char *fname) \
87
\
88
/* 15+16 to use gzip method */ \
89
if (inflateInit2(&strm, 15+16) != Z_OK) \
90
- goto out2; \
+ goto out1; \
91
92
strm.avail_in = mf->poimf_mapsize; \
93
strm.next_in = (unsigned char *)mf->poimf_xml; \
@@ -103,7 +103,7 @@ prop ## type ## _internalize_from_zfile(const char *fname) \
103
case Z_NEED_DICT: \
104
case Z_MEM_ERROR: \
105
errno = EINVAL; \
106
- goto out1; \
+ goto out2; \
107
} \
108
have = _READ_CHUNK - strm.avail_out; \
109
totalsize += have; \
0 commit comments