no message
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@691 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
4c55df6c46
commit
2d52d815dc
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
#ifdef NSIS_COMPRESS_USE_ZLIB
|
#ifdef NSIS_COMPRESS_USE_ZLIB
|
||||||
/* inflate.c -- zlib interface to inflate modules
|
/* inflate.c -- zlib interface to inflate modules
|
||||||
* Copyright (C) 1995-1998 Mark Adler
|
* Copyright (C) 1995-1998 Mark Adler
|
||||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
||||||
|
|
||||||
* this has been HEAVILY modified for NSIS use, and is no longer compatible
|
* this has been HEAVILY modified for NSIS use, and is no longer compatible
|
||||||
* with the stock zlib.
|
* with the stock zlib.
|
||||||
|
@ -44,10 +44,10 @@ int inflateReset(z_streamp z)
|
||||||
|
|
||||||
int inflateInit(z_streamp z)
|
int inflateInit(z_streamp z)
|
||||||
{
|
{
|
||||||
int inflate_blocks_getssize();
|
int inflate_blocks_getssize(void);
|
||||||
void inflate_blocks_init(z_streamp z,inflate_blocks_statef *s);
|
void inflate_blocks_init(z_streamp z,inflate_blocks_statef *s);
|
||||||
|
|
||||||
if ((z->state =
|
if ((z->state =
|
||||||
(struct internal_state FAR *) ZALLOC(z,1,sizeof(struct internal_state)+inflate_blocks_getssize())) == Z_NULL)
|
(struct internal_state FAR *) ZALLOC(z,1,sizeof(struct internal_state)+inflate_blocks_getssize())) == Z_NULL)
|
||||||
return Z_MEM_ERROR;
|
return Z_MEM_ERROR;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue