diff options
author | Joel Brobecker <brobecker@adacore.com> | 2015-11-25 15:09:09 -0800 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2015-11-25 15:14:47 -0800 |
commit | da09a436519e8085d328a586c438b5b0a560924d (patch) | |
tree | 00c45547fe27ee944ef36f7260a241e9d287a17b /zlib/inffast.c | |
parent | 74b03b91333ccbc8fa70647eca22062e902f797f (diff) | |
download | gdb-da09a436519e8085d328a586c438b5b0a560924d.zip gdb-da09a436519e8085d328a586c438b5b0a560924d.tar.gz gdb-da09a436519e8085d328a586c438b5b0a560924d.tar.bz2 |
Import zlib 1.2.8 with local change merged in.
ChangeLog:
* zlib: Update to zlib 1.2.8 with local changes merged in.
Diffstat (limited to 'zlib/inffast.c')
-rw-r--r-- | zlib/inffast.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zlib/inffast.c b/zlib/inffast.c index 2f1d60b..bda59ce 100644 --- a/zlib/inffast.c +++ b/zlib/inffast.c @@ -1,5 +1,5 @@ /* inffast.c -- fast decoding - * Copyright (C) 1995-2008, 2010 Mark Adler + * Copyright (C) 1995-2008, 2010, 2013 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -69,8 +69,8 @@ z_streamp strm; unsigned start; /* inflate()'s starting value for strm->avail_out */ { struct inflate_state FAR *state; - unsigned char FAR *in; /* local strm->next_in */ - unsigned char FAR *last; /* while in < last, enough input available */ + z_const unsigned char FAR *in; /* local strm->next_in */ + z_const unsigned char FAR *last; /* have enough input while in < last */ unsigned char FAR *out; /* local strm->next_out */ unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ unsigned char FAR *end; /* while out < end, enough space available */ |