summaryrefslogtreecommitdiff
path: root/inftrees.c
diff options
context:
space:
mode:
Diffstat (limited to 'inftrees.c')
-rw-r--r--inftrees.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/inftrees.c b/inftrees.c
index 54c7c8e..ab0ed2c 100644
--- a/inftrees.c
+++ b/inftrees.c
@@ -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;
393voidp p; 394voidp 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