diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/unarchive.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libbb/unarchive.c b/libbb/unarchive.c index 5c5bb49f3..80dddb226 100644 --- a/libbb/unarchive.c +++ b/libbb/unarchive.c | |||
@@ -568,6 +568,9 @@ char *deb_extract(const char *package_filename, FILE *out_stream, | |||
568 | /* open the debian package to be worked on */ | 568 | /* open the debian package to be worked on */ |
569 | deb_stream = wfopen(package_filename, "r"); | 569 | deb_stream = wfopen(package_filename, "r"); |
570 | 570 | ||
571 | /* set the buffer size */ | ||
572 | setvbuf(deb_stream, NULL, _IOFBF, 0x8000); | ||
573 | |||
571 | /* check ar magic */ | 574 | /* check ar magic */ |
572 | fread(ar_magic, 1, 8, deb_stream); | 575 | fread(ar_magic, 1, 8, deb_stream); |
573 | if (strncmp(ar_magic,"!<arch>",7) != 0) { | 576 | if (strncmp(ar_magic,"!<arch>",7) != 0) { |