diff options
Diffstat (limited to 'inftrees.c')
-rw-r--r-- | inftrees.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -383,6 +383,7 @@ uInt s; /* size of item */ | |||
383 | { | 383 | { |
384 | Assert(s == sizeof(inflate_huft) && n <= fixed_left, | 384 | Assert(s == sizeof(inflate_huft) && n <= fixed_left, |
385 | "inflate_trees falloc overflow"); | 385 | "inflate_trees falloc overflow"); |
386 | if (q) s++; /* to make some compilers happy */ | ||
386 | fixed_left -= n; | 387 | fixed_left -= n; |
387 | return (voidp)(fixed_mem + fixed_left); | 388 | return (voidp)(fixed_mem + fixed_left); |
388 | } | 389 | } |
@@ -393,6 +394,7 @@ voidp q; | |||
393 | voidp p; | 394 | voidp p; |
394 | { | 395 | { |
395 | Assert(0, "inflate_trees ffree called!"); | 396 | Assert(0, "inflate_trees ffree called!"); |
397 | if (q) q = p; /* to make some compilers happy */ | ||
396 | } | 398 | } |
397 | 399 | ||
398 | 400 | ||