Fix memory leak. (#94399)

Thu Oct  3 18:25:57 2002  Owen Taylor  <otaylor@redhat.com>

        * io-jpeg.c (gdk_pixbuf__jpeg_image_save):
        Fix memory leak. (#94399)
This commit is contained in:
Owen Taylor 2002-10-03 22:32:39 +00:00 committed by Owen Taylor
parent 040d54a534
commit 71277f4075
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Oct 3 18:25:57 2002 Owen Taylor <otaylor@redhat.com>
* io-jpeg.c (gdk_pixbuf__jpeg_image_save):
Fix memory leak. (#94399)
Tue Oct 1 17:35:43 2002 Owen Taylor <otaylor@redhat.com>
* gdkpixdata.c: Patch from Andy Wingo to always

View File

@ -901,7 +901,8 @@ gdk_pixbuf__jpeg_image_save (FILE *f,
}
/* finish off */
jpeg_finish_compress (&cinfo);
jpeg_finish_compress (&cinfo);
jpeg_destroy_compress(&cinfo);
g_free (buf);
return TRUE;
}