Added initializer to quiet gcc warning. Added assertion to check for null

Added initializer to quiet gcc warning.
        Added assertion to check for null pointer deref.
This commit is contained in:
Jeff Garzik
1998-11-30 17:19:59 +00:00
parent 0c36e30836
commit 58ca2448eb
8 changed files with 45 additions and 1 deletions

View File

@ -4122,7 +4122,7 @@ gtk_notebook_reorder_child (GtkNotebook *notebook,
{
GList *list;
GList *work;
GtkNotebookPage *page;
GtkNotebookPage *page = NULL;
gint old_pos;
g_return_if_fail (notebook != NULL);
@ -4169,6 +4169,8 @@ gtk_notebook_reorder_child (GtkNotebook *notebook,
{
GtkWidget *menu_item;
g_assert(page != NULL);
menu_item = page->menu_label->parent;
gtk_container_remove (GTK_CONTAINER (menu_item), page->menu_label);
gtk_container_remove (GTK_CONTAINER (notebook->menu), menu_item);