aboutsummaryrefslogtreecommitdiffstats
path: root/src/jpeg.c
diff options
context:
space:
mode:
authorJohn Hawthorn <jhawthor@uvic.ca>2008-05-19 21:07:27 -0700
committerJohn Hawthorn <jhawthor@uvic.ca>2008-05-19 21:07:27 -0700
commitc10594536108203e215e50bf3cf61c7e8aeb733f (patch)
tree1b84c7cf6a628745f0ed76a1dcb827530ef3d8de /src/jpeg.c
parent1fde363229b261038dab179c91106d3d4e03cc32 (diff)
downloadmirror-meh-c10594536108203e215e50bf3cf61c7e8aeb733f.tar.gz
mirror-meh-c10594536108203e215e50bf3cf61c7e8aeb733f.tar.bz2
mirror-meh-c10594536108203e215e50bf3cf61c7e8aeb733f.zip
ready for gif decoder
Diffstat (limited to 'src/jpeg.c')
-rw-r--r--src/jpeg.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jpeg.c b/src/jpeg.c
index f0ea699..bf90f2d 100644
--- a/src/jpeg.c
+++ b/src/jpeg.c
@@ -66,7 +66,6 @@ unsigned char *loadjpeg(FILE *infile, int *width, int *height){
}
jpeg_finish_decompress(&cinfo);
jpeg_destroy_decompress(&cinfo);
- fclose(infile);
return retbuf;
}