Check for changeset != NULL before looking in changeset.

2002-03-11  Richard Hestilow  <hestilow@ximian.com>

	* gnome-mouse-properties.c (drawing_area_button_press_event):
	Check for changeset != NULL before looking in changeset.
This commit is contained in:
Richard Hestilow 2002-03-12 05:20:46 +00:00 committed by Rachel Hestilow
parent 5fda24a5e5
commit de151bab0f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-03-11 Richard Hestilow <hestilow@ximian.com>
* gnome-mouse-properties.c (drawing_area_button_press_event):
Check for changeset != NULL before looking in changeset.
2002-03-10 Seth Nickell <snickell@stanford.edu>
* gnome-mouse-properties.c: (main):

View file

@ -188,7 +188,7 @@ drawing_area_button_press_event (GtkWidget *widget,
if (event->type != GDK_BUTTON_PRESS)
return FALSE;
if (!gconf_change_set_check_value (changeset, DOUBLE_CLICK_KEY, &value))
if (!(changeset && gconf_change_set_check_value (changeset, DOUBLE_CLICK_KEY, &value)))
double_click_time = gconf_client_get_int (gconf_client_get_default (), DOUBLE_CLICK_KEY, NULL);
else
double_click_time = gconf_value_get_int (value);