handle failed thumbnailing attempts properly

2008-03-11  Jens Granseuer  <jensgr@gmx.net>

	* theme-thumbnailer.c: (main): handle failed thumbnailing attempts
	properly

svn path=/trunk/; revision=8575
This commit is contained in:
Jens Granseuer 2008-03-11 17:37:09 +00:00 committed by Jens Granseuer
parent d3b988bc36
commit daa1c4b876
2 changed files with 14 additions and 2 deletions

View file

@ -143,8 +143,15 @@ main(int argc, char **argv)
if (theme) {
pixbuf = generate_meta_theme_thumbnail (theme);
save_pixbuf (pixbuf, argv[2]);
gdk_pixbuf_unref (pixbuf);
gnome_theme_meta_info_free (theme);
if (pixbuf) {
save_pixbuf (pixbuf, argv[2]);
gdk_pixbuf_unref (pixbuf);
} else {
g_printerr ("could not generate thumbnail\n");
return 1;
}
}
else {
g_printerr ("usage: gnome-theme-thumbnailer theme output-image\n");