mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
upgrade zlib to 1.2.2
acinclude.m4: clarify help text
This commit is contained in:
parent
58aeecb078
commit
d4285cae16
18 changed files with 252 additions and 137 deletions
|
|
@ -109,6 +109,7 @@ z_streamp strm;
|
|||
state = (struct inflate_state FAR *)strm->state;
|
||||
strm->total_in = strm->total_out = state->total = 0;
|
||||
strm->msg = Z_NULL;
|
||||
strm->adler = 1; /* to support ill-conceived Java test suite */
|
||||
state->mode = HEAD;
|
||||
state->last = 0;
|
||||
state->havedict = 0;
|
||||
|
|
@ -861,6 +862,9 @@ int flush;
|
|||
}
|
||||
}
|
||||
|
||||
/* handle error breaks in while */
|
||||
if (state->mode == BAD) break;
|
||||
|
||||
/* build code tables */
|
||||
state->next = state->codes;
|
||||
state->lencode = (code const FAR *)(state->next);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue