Workaround to avoid a strange core dump.

gzip < /dev/null | perl -npe 's/\003\003/\003\225/' | gzip -d
This commit is contained in:
Wolfram Schneider 1997-12-26 21:12:26 +00:00
parent 71f461f86a
commit 9c8ac6c742
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32006

View file

@ -97,7 +97,7 @@
*/
#ifdef RCSID
static char rcsid[] = "$Id$";
static char rcsid[] = "$Id: inflate.c,v 1.6 1997/02/22 15:45:58 peter Exp $";
#endif
#include <sys/types.h>
@ -767,6 +767,8 @@ int inflate_dynamic()
return i; /* incomplete code set */
}
if (tl == NULL) /* Grrrhhh */
return 2;
/* read in literal and distance code lengths */
n = nl + nd;