Fix buffer overflow on zlib uncompression errors.

svn path=/trunk/; revision=2299
This commit is contained in:
Laurent Deniel 2000-08-19 18:31:23 +00:00
parent 8bc95e98e4
commit 8d95269d34
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* wtap.c
*
* $Id: wtap.c,v 1.45 2000/06/27 07:13:42 guy Exp $
* $Id: wtap.c,v 1.46 2000/08/19 18:31:23 deniel Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org>
@ -164,7 +164,7 @@ static const char *wtap_errlist[] = {
const char *wtap_strerror(int err)
{
static char errbuf[6+11+1]; /* "Error %d" */
static char errbuf[128];
int wtap_errlist_index;
if (err < 0) {