summaryrefslogtreecommitdiff
path: root/jdatasrc.c
diff options
context:
space:
mode:
authorGuido Vollbeding <jpeg-info@uc.ag>2010-05-16 00:00:00 +0000
committerDRC <information@libjpeg-turbo.org>2015-07-27 13:48:40 -0500
commita4ecaacde6d64e1f20b8647546813c17592016c1 (patch)
tree64c45579cfc714ac0578e605c37f4f55b328d712 /jdatasrc.c
parentf18f81b7e20cf993786a3348960ab2428762deee (diff)
The Independent JPEG Group's JPEG software v8b
Diffstat (limited to 'jdatasrc.c')
-rw-r--r--jdatasrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jdatasrc.c b/jdatasrc.c
index d3136db..c8fe3da 100644
--- a/jdatasrc.c
+++ b/jdatasrc.c
@@ -2,7 +2,7 @@
* jdatasrc.c
*
* Copyright (C) 1994-1996, Thomas G. Lane.
- * Modified 2009 by Guido Vollbeding.
+ * Modified 2009-2010 by Guido Vollbeding.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README file.
*
@@ -163,7 +163,7 @@ skip_input_data (j_decompress_ptr cinfo, long num_bytes)
if (num_bytes > 0) {
while (num_bytes > (long) src->bytes_in_buffer) {
num_bytes -= (long) src->bytes_in_buffer;
- (void) fill_input_buffer(cinfo);
+ (void) (*src->fill_input_buffer) (cinfo);
/* note we assume that fill_input_buffer will never return FALSE,
* so suspension need not be handled.
*/