--- embedaddon/rsync/zlib/inflate.c 2013/10/14 07:51:14 1.1.1.2 +++ embedaddon/rsync/zlib/inflate.c 2021/03/17 00:32:36 1.1.1.3 @@ -885,9 +885,10 @@ int flush; INITBITS(); state->mode = COPY_; if (flush == Z_TREES) goto inf_leave; + /* FALLTHROUGH */ case COPY_: state->mode = COPY; - /* FALL THROUGH */ + /* FALLTHROUGH */ case COPY: copy = state->length; if (copy) { @@ -1525,9 +1526,10 @@ z_streamp strm; { 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 (long)(((unsigned long)0 - 1) << 16); state = (struct inflate_state FAR *)strm->state; - return ((long)(state->back) << 16) + + return (long)(((unsigned long)((long)state->back)) << 16) + (state->mode == COPY ? state->length : (state->mode == MATCH ? state->was - state->length : 0)); }