summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdk-pixbuf/ChangeLog5
-rw-r--r--gdk-pixbuf/io-jpeg.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 9fa0048ec..f7a07f30d 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -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
diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index ecd650a75..3945b0cd0 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -887,7 +887,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;
}