summaryrefslogtreecommitdiff
path: root/tools/cws2fws.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cws2fws.c')
-rw-r--r--tools/cws2fws.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/cws2fws.c b/tools/cws2fws.c
index 74588c10a6..8dc285bfff 100644
--- a/tools/cws2fws.c
+++ b/tools/cws2fws.c
@@ -79,7 +79,10 @@ int main(int argc, char *argv[])
zstream.zalloc = NULL;
zstream.zfree = NULL;
zstream.opaque = NULL;
- inflateInit(&zstream);
+ if (inflateInit(&zstream) != Z_OK) {
+ fprintf(stderr, "inflateInit failed\n");
+ return 1;
+ }
for (i = 0; i < comp_len - 8;) {
int ret, len = read(fd_in, &buf_in, 1024);