2008-08-25 [colin] 3.5.0cvs71

* src/gtk/gtkcmctree.c
		Make sure work isn't null
This commit is contained in:
Colin Leroy 2008-08-25 05:50:57 +00:00
parent 9aa189c7f7
commit e5ad9bc294
4 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2008-08-25 [colin] 3.5.0cvs71
* src/gtk/gtkcmctree.c
Make sure work isn't null
2008-08-24 [colin] 3.5.0cvs70
* src/common/ssl.c

View file

@ -3482,3 +3482,4 @@
( cvs diff -u -r 1.274.2.269 -r 1.274.2.270 src/mainwindow.c; ) > 3.5.0cvs68.patchset
( cvs diff -u -r 1.1.2.14 -r 1.1.2.15 src/printing.c; ) > 3.5.0cvs69.patchset
( cvs diff -u -r 1.9.2.31 -r 1.9.2.32 src/common/ssl.c; ) > 3.5.0cvs70.patchset
( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/gtk/gtkcmctree.c; ) > 3.5.0cvs71.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=5
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=70
EXTRA_VERSION=71
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -4163,7 +4163,7 @@ gtk_cmctree_is_viewable (GtkCMCTree *ctree,
work = GTK_CMCTREE_ROW (node);
while (work->parent && GTK_CMCTREE_ROW (work->parent)->expanded)
while (work && work->parent && GTK_CMCTREE_ROW (work->parent)->expanded)
work = GTK_CMCTREE_ROW (work->parent);
if (!work->parent)