* src/matcher.c
Check for pointer before using its members
* src/gtk/gtksourceprintjob.c
Fix a wrong warning
+2006-02-09 [colin] 2.0.0cvs39
+
+ * src/matcher.c
+ Check for pointer before using its members
+ * src/gtk/gtksourceprintjob.c
+ Fix a wrong warning
+
2006-02-09 [wwp] 2.0.0cvs38
* src/gtk/filesel.c
( cvs diff -u -r 1.204.2.74 -r 1.204.2.75 src/prefs_common.c; cvs diff -u -r 1.9.2.22 -r 1.9.2.23 src/common/defs.h; cvs diff -u -r 1.13.2.15 -r 1.13.2.16 src/common/plugin.c; ) > 2.0.0cvs36.patchset
( cvs diff -u -r 1.42.2.20 -r 1.42.2.21 po/fr.po; ) > 2.0.0cvs37.patchset
( cvs diff -u -r 1.2.2.21 -r 1.2.2.22 src/gtk/filesel.c; ) > 2.0.0cvs38.patchset
+( cvs diff -u -r 1.75.2.16 -r 1.75.2.17 src/matcher.c; cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/gtk/gtksourceprintjob.c; ) > 2.0.0cvs39.patchset
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=38
+EXTRA_VERSION=39
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
while (l != NULL)
{
Paragraph *para = l->data;
- gdouble baseline;
+ gdouble baseline = 0;
gint last_line = line;
line = print_paragraph (job, para, line, x, &y, &baseline, force_fit);
GSList *l;
gboolean result;
+ if (!matchers)
+ return FALSE;
+
if (matchers->bool_and)
result = TRUE;
else