diff options
Diffstat (limited to 'lib/decompress_bunzip2.c')
-rw-r--r-- | lib/decompress_bunzip2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c index 81c8bb1cc6a..e805087f556 100644 --- a/lib/decompress_bunzip2.c +++ b/lib/decompress_bunzip2.c | |||
@@ -682,13 +682,12 @@ STATIC int INIT bunzip2(unsigned char *buf, int len, | |||
682 | int(*flush)(void*, unsigned int), | 682 | int(*flush)(void*, unsigned int), |
683 | unsigned char *outbuf, | 683 | unsigned char *outbuf, |
684 | int *pos, | 684 | int *pos, |
685 | void(*error_fn)(char *x)) | 685 | void(*error)(char *x)) |
686 | { | 686 | { |
687 | struct bunzip_data *bd; | 687 | struct bunzip_data *bd; |
688 | int i = -1; | 688 | int i = -1; |
689 | unsigned char *inbuf; | 689 | unsigned char *inbuf; |
690 | 690 | ||
691 | set_error_fn(error_fn); | ||
692 | if (flush) | 691 | if (flush) |
693 | outbuf = malloc(BZIP2_IOBUF_SIZE); | 692 | outbuf = malloc(BZIP2_IOBUF_SIZE); |
694 | 693 | ||
@@ -751,8 +750,8 @@ STATIC int INIT decompress(unsigned char *buf, int len, | |||
751 | int(*flush)(void*, unsigned int), | 750 | int(*flush)(void*, unsigned int), |
752 | unsigned char *outbuf, | 751 | unsigned char *outbuf, |
753 | int *pos, | 752 | int *pos, |
754 | void(*error_fn)(char *x)) | 753 | void(*error)(char *x)) |
755 | { | 754 | { |
756 | return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error_fn); | 755 | return bunzip2(buf, len - 4, fill, flush, outbuf, pos, error); |
757 | } | 756 | } |
758 | #endif | 757 | #endif |