diff options
author | Guido Vollbeding <jpeg-info@uc.ag> | 2010-05-16 00:00:00 +0000 |
---|---|---|
committer | DRC <information@libjpeg-turbo.org> | 2015-07-27 13:48:40 -0500 |
commit | a4ecaacde6d64e1f20b8647546813c17592016c1 (patch) | |
tree | 64c45579cfc714ac0578e605c37f4f55b328d712 /jdatasrc.c | |
parent | f18f81b7e20cf993786a3348960ab2428762deee (diff) |
The Independent JPEG Group's JPEG software v8b
Diffstat (limited to 'jdatasrc.c')
-rw-r--r-- | jdatasrc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |