summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2004-08-24 14:32:15 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-08-24 14:32:15 +0000
commitb97018ad7fc6d484877a2f9dec0adf47620fd0b0 (patch)
treeb779e27394914190da85cc8d796d70896220680d /gdk
parent2f2dee4341a4ee5f82fe6a619ecc90426e84714a (diff)
downloadgdk-pixbuf-b97018ad7fc6d484877a2f9dec0adf47620fd0b0.tar.gz
Use the correct index variable. (#150941, Tommi Komulainen)
2004-08-24 Matthias Clasen <mclasen@redhat.com> * gdk/gdkimage.c (allocate_scratch_images): Use the correct index variable. (#150941, Tommi Komulainen)
Diffstat (limited to 'gdk')
-rw-r--r--gdk/gdkimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkimage.c b/gdk/gdkimage.c
index 8b7d3b584..0b85f6125 100644
--- a/gdk/gdkimage.c
+++ b/gdk/gdkimage.c
@@ -217,7 +217,7 @@ allocate_scratch_images (GdkScratchImageInfo *info,
gint j;
for (j = 0; j < i; j++)
- g_object_unref (info->static_image[i]);
+ g_object_unref (info->static_image[j]);
return FALSE;
}