[Commits] gtkaspell.c 1.9.2.75 1.9.2.76
colin at claws-mail.org
colin at claws-mail.org
Sat Nov 5 15:45:51 CET 2011
Update of /home/claws-mail/claws/src/gtk
In directory claws-mail:/tmp/cvs-serv27832/src/gtk
Modified Files:
Tag: gtk2
gtkaspell.c
Log Message:
2011-11-05 [colin] 3.7.10cvs71
* src/gtk/gtkaspell.c
No need to show a backtrace if gtkaspell is null
Index: gtkaspell.c
===================================================================
RCS file: /home/claws-mail/claws/src/gtk/gtkaspell.c,v
retrieving revision 1.9.2.75
retrieving revision 1.9.2.76
diff -u -d -r1.9.2.75 -r1.9.2.76
--- gtkaspell.c 5 Nov 2011 14:19:32 -0000 1.9.2.75
+++ gtkaspell.c 5 Nov 2011 14:45:49 -0000 1.9.2.76
@@ -1192,7 +1192,8 @@
{
GtkTextView *gtktext;
- cm_return_if_fail(gtkaspell);
+ if (gtkaspell == null)
+ return;
gtktext = gtkaspell->gtktext;
g_signal_handlers_block_by_func(G_OBJECT(gtktext),
@@ -1207,7 +1208,8 @@
{
GtkTextView *gtktext;
- cm_return_if_fail(gtkaspell);
+ if (gtkaspell == null)
+ return;
gtktext = gtkaspell->gtktext;
g_signal_handlers_unblock_by_func(G_OBJECT(gtktext),
More information about the Commits
mailing list