Initialise description on init.
authorJohn Darrington <john@darrington.wattle.id.au>
Mon, 23 Mar 2009 06:42:38 +0000 (15:42 +0900)
committerJohn Darrington <john@darrington.wattle.id.au>
Mon, 23 Mar 2009 06:42:38 +0000 (15:42 +0900)
Windows' description parameter must not be
NULL.  So initialize it to the empty string.

src/ui/gui/psppire-window.c

index d5f3948ff78073fe3da1527c88f479c2ca111ceb..54c751d6fab5e4ed2a93a1baad6bc9682a262bec 100644 (file)
@@ -408,6 +408,7 @@ psppire_window_init (PsppireWindow *window)
 {
   window->name = NULL;
   window->menu = NULL;
+  window->description = strdup ("");
 
   window->menuitem_table  = g_hash_table_new (g_str_hash, g_str_equal);