diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-04 18:50:29 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-04 18:50:29 +0100 |
commit | f5decdf48e13d89f133c27e9e8b77c5e04aa4bbd (patch) | |
tree | 8a465ed37366c4658ea377544f314a1b7e12e76c /src/jpeg.c | |
parent | 816b74acd5396ef095e57909305881c6094e1dce (diff) | |
parent | ac3bab6219c73fef181f120e11d9d2c07ba848c3 (diff) |
merge
Diffstat (limited to 'src/jpeg.c')
-rw-r--r-- | src/jpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,6 @@ typedef struct DilloJpeg { static DilloJpeg *Jpeg_new(DilloImage *Image, DilloUrl *url, int version); static void Jpeg_callback(int Op, CacheClient_t *Client); static void Jpeg_write(DilloJpeg *jpeg, void *Buf, uint_t BufSize); -static void Jpeg_close(DilloJpeg *jpeg, CacheClient_t *Client); METHODDEF(void) Jpeg_errorexit (j_common_ptr cinfo); /* exported function */ @@ -140,6 +139,7 @@ void *a_Jpeg_image(const char *Type, void *P, CA_Callback_t *Call, */ static void Jpeg_close(DilloJpeg *jpeg, CacheClient_t *Client) { + MSG("Jpeg_close\n"); a_Dicache_close(jpeg->url, jpeg->version, Client); jpeg_destroy_decompress(&(jpeg->cinfo)); dFree(jpeg); |