diff options
author | Aruna Balakrishnaiah <aruna@linux.vnet.ibm.com> | 2013-09-11 13:58:03 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2013-09-16 12:28:29 -0400 |
commit | b61edf8e7cf9d8d450b65588b2ff40dfb8c2fd9b (patch) | |
tree | a5327e81ce5912dbc130f62550a983369e85921b /fs/pstore/platform.c | |
parent | 7de8fe2fa8f94985a83120f04d41a93425ea66ba (diff) |
pstore: Use zlib_inflateInit2 instead of zlib_inflateInit
Since zlib_deflateInit2() is used for specifying window bit during compression,
zlib_inflateInit2() is appropriate for decompression.
Reported-by: Seiji Aguchi <seiji.aguchi@hds.com>
Tested-by: Seiji Aguchi <seiji.aguchi@hds.com>
Signed-off-by: Aruna Balakrishnaiah <aruna@linux.vnet.ibm.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'fs/pstore/platform.c')
-rw-r--r-- | fs/pstore/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c index 57b4219398cd..c853e05cd7f6 100644 --- a/fs/pstore/platform.c +++ b/fs/pstore/platform.c | |||
@@ -168,7 +168,7 @@ static int pstore_decompress(void *in, void *out, size_t inlen, size_t outlen) | |||
168 | int err, ret; | 168 | int err, ret; |
169 | 169 | ||
170 | ret = -EIO; | 170 | ret = -EIO; |
171 | err = zlib_inflateInit(&stream); | 171 | err = zlib_inflateInit2(&stream, WINDOW_BITS); |
172 | if (err != Z_OK) | 172 | if (err != Z_OK) |
173 | goto error; | 173 | goto error; |
174 | 174 | ||