diff options
author | Eric Andersen | 2001-01-25 23:49:09 +0000 |
---|---|---|
committer | Eric Andersen | 2001-01-25 23:49:09 +0000 |
commit | d35c21587a4139031c077fd122252217a4713681 (patch) | |
tree | 7bd14fd247492c00f3d38ae1dbd7727e03fda9ad /archival | |
parent | ffde8673fe8b2c32076aa3e01eab1fefc5f08e86 (diff) | |
download | busybox-d35c21587a4139031c077fd122252217a4713681.zip busybox-d35c21587a4139031c077fd122252217a4713681.tar.gz |
Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.
-Erik
Diffstat (limited to 'archival')
-rw-r--r-- | archival/gunzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index 1949216..09571f9 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -1222,8 +1222,8 @@ int gunzip_main(int argc, char **argv) int force = 0; struct stat statBuf; char *delFileName; - char ifname[MAX_PATH_LEN + 1]; /* input file name */ - char ofname[MAX_PATH_LEN + 1]; /* output file name */ + RESERVE_BB_BUFFER(ifname, MAX_PATH_LEN+1); /* input file name */ + RESERVE_BB_BUFFER(ofname, MAX_PATH_LEN+1); /* output file name */ method = DEFLATED; /* default compression method */ exit_code = OK; /* let's go out on a limb and assume everything will run fine (wink wink) */ |