blob: e80429713c6854ae54cead6c894e7f5d35835c2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- codecs/jpeg.cc.orig 2009-06-14 08:19:28.000000000 -0400
+++ codecs/jpeg.cc 2010-01-16 21:51:34.000000000 -0500
@@ -683,7 +683,7 @@
* We need to clean up the JPEG object, close the input file, and return.
*/
jpeg_destroy_decompress (cinfo);
- free (cinfo);
+ delete cinfo;
return false;
}
|