2007-09-20 [colin] 3.0.1cvs14

* src/printing.c
		Fix a little leak
This commit is contained in:
Colin Leroy 2007-09-20 16:50:49 +00:00
parent bdf058a60f
commit 5b06a92b13
4 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-09-20 [colin] 3.0.1cvs14
* src/printing.c
Fix a little leak
2007-09-20 [holger] 3.0.1cvs13
* src/printing.c

View file

@ -2877,3 +2877,4 @@
( cvs diff -u -r 1.36.2.112 -r 1.36.2.113 src/common/utils.c; ) > 3.0.1cvs11.patchset
( cvs diff -u -r 1.17.2.16 -r 1.17.2.17 po/ru.po; ) > 3.0.1cvs12.patchset
( cvs diff -u -r 1.1.2.6 -r 1.1.2.7 src/printing.c; ) > 3.0.1cvs13.patchset
( cvs diff -u -r 1.1.2.7 -r 1.1.2.8 src/printing.c; ) > 3.0.1cvs14.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=0
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=13
EXTRA_VERSION=14
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -838,6 +838,8 @@ static void printing_layout_set_text_attributes(PrintData *print_data, GtkPrintC
open_attrs = g_slist_delete_link(open_attrs, attr_walk);
break;
}
if (color)
gdk_color_free(color);
}
}
if(!found)
@ -858,6 +860,8 @@ static void printing_layout_set_text_attributes(PrintData *print_data, GtkPrintC
open_attrs = g_slist_delete_link(open_attrs, attr_walk);
break;
}
if (color)
gdk_color_free(color);
}
}
if(!found)