Page MenuHomeFreeBSD

D3344.diff
No OneTemporary

D3344.diff

Index: stable/10/lib/libz/inflate.c
===================================================================
--- stable/10/lib/libz/inflate.c
+++ stable/10/lib/libz/inflate.c
@@ -1504,7 +1504,7 @@
{
struct inflate_state FAR *state;
- if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
+ if (strm == Z_NULL || strm->state == Z_NULL) return -(1L << 16);
state = (struct inflate_state FAR *)strm->state;
return ((long)(state->back) << 16) +
(state->mode == COPY ? state->length :
Index: stable/9/lib/libz/inflate.c
===================================================================
--- stable/9/lib/libz/inflate.c
+++ stable/9/lib/libz/inflate.c
@@ -1504,7 +1504,7 @@
{
struct inflate_state FAR *state;
- if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
+ if (strm == Z_NULL || strm->state == Z_NULL) return -(1L << 16);
state = (struct inflate_state FAR *)strm->state;
return ((long)(state->back) << 16) +
(state->mode == COPY ? state->length :

File Metadata

Mime Type
text/plain
Expires
Sat, Feb 22, 9:14 PM (6 h, 42 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16780351
Default Alt Text
D3344.diff (1 KB)

Event Timeline