diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-01-24 00:41:26 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-01-24 00:41:26 -0500 |
commit | 4c2e53a46864b397fcb1447a1dc5164d3cf4d353 (patch) | |
tree | fd4fa003e4d7a4458e98b01dcc508ecd555e301c /gtk/gtkimage.c | |
parent | 3104e5d2c192fa1d31fbf73049c0ad140888e059 (diff) | |
download | gtk+-4c2e53a46864b397fcb1447a1dc5164d3cf4d353.tar.gz |
Silence a compiler warning
Diffstat (limited to 'gtk/gtkimage.c')
-rw-r--r-- | gtk/gtkimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c index 8551149bfd..34057c5b53 100644 --- a/gtk/gtkimage.c +++ b/gtk/gtkimage.c @@ -788,7 +788,7 @@ void gtk_image_set_from_resource (GtkImage *image, const gchar *resource_path) { - GdkPixbuf *pixbuf; + GdkPixbuf *pixbuf = NULL; GInputStream *stream; g_return_if_fail (GTK_IS_IMAGE (image)); |