diff options
author | Matthias Klose <doko@ubuntu.com> | 2015-11-23 20:27:57 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2015-11-23 20:27:57 +0000 |
commit | cd9ec14217a566fa0ae12ccf34534cbb7680f5ab (patch) | |
tree | c0867a0d04452190fa29a7e38ad632c37d5221cd /zlib/examples/zran.c | |
parent | 4c93660449ea23e5eee1f8ce3e97129c7974b7fc (diff) | |
download | gcc-cd9ec14217a566fa0ae12ccf34534cbb7680f5ab.zip gcc-cd9ec14217a566fa0ae12ccf34534cbb7680f5ab.tar.gz gcc-cd9ec14217a566fa0ae12ccf34534cbb7680f5ab.tar.bz2 |
2015-11-23 Matthias Klose <doko@ubuntu.com>
* Imported zlib 1.2.8; merged local changes.
From-SVN: r230774
Diffstat (limited to 'zlib/examples/zran.c')
-rw-r--r-- | zlib/examples/zran.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/zlib/examples/zran.c b/zlib/examples/zran.c index 617a130..278f9ad 100644 --- a/zlib/examples/zran.c +++ b/zlib/examples/zran.c @@ -1,7 +1,12 @@ /* zran.c -- example of zlib/gzip stream indexing and random access - * Copyright (C) 2005 Mark Adler + * Copyright (C) 2005, 2012 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h - Version 1.0 29 May 2005 Mark Adler */ + Version 1.1 29 Sep 2012 Mark Adler */ + +/* Version History: + 1.0 29 May 2005 First version + 1.1 29 Sep 2012 Fix memory reallocation error + */ /* Illustrate the use of Z_BLOCK, inflatePrime(), and inflateSetDictionary() for random access of a compressed file. A file containing a zlib or gzip @@ -221,7 +226,7 @@ local int build_index(FILE *in, off_t span, struct access **built) /* clean up and return index (release unused entries in list) */ (void)inflateEnd(&strm); - index = realloc(index, sizeof(struct point) * index->have); + index->list = realloc(index->list, sizeof(struct point) * index->have); index->size = index->have; *built = index; return index->size; |