Prevent an infinite loop when G_FILENAME_ENCODING is invalid. (#309280,

2005-07-01  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkfilesel.c (cmpl_init_state): Prevent an infinite
	loop when G_FILENAME_ENCODING is invalid.  (#309280, Padraig Brady)
This commit is contained in:
Matthias Clasen 2005-07-01 15:51:30 +00:00 committed by Matthias Clasen
parent 1bf3ada15b
commit 7dc4d68410
4 changed files with 19 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-07-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilesel.c (cmpl_init_state): Prevent an infinite
loop when G_FILENAME_ENCODING is invalid. (#309280, Padraig Brady)
Thu Jun 30 14:17:24 2005 Manish Singh <yosh@gimp.org> Thu Jun 30 14:17:24 2005 Manish Singh <yosh@gimp.org>
* gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event. * gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event.

View File

@ -1,3 +1,8 @@
2005-07-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilesel.c (cmpl_init_state): Prevent an infinite
loop when G_FILENAME_ENCODING is invalid. (#309280, Padraig Brady)
Thu Jun 30 14:17:24 2005 Manish Singh <yosh@gimp.org> Thu Jun 30 14:17:24 2005 Manish Singh <yosh@gimp.org>
* gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event. * gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event.

View File

@ -1,3 +1,8 @@
2005-07-01 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilesel.c (cmpl_init_state): Prevent an infinite
loop when G_FILENAME_ENCODING is invalid. (#309280, Padraig Brady)
Thu Jun 30 14:17:24 2005 Manish Singh <yosh@gimp.org> Thu Jun 30 14:17:24 2005 Manish Singh <yosh@gimp.org>
* gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event. * gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event.

View File

@ -2671,13 +2671,14 @@ cmpl_init_state (void)
{ {
gchar *utf8_cwd; gchar *utf8_cwd;
CompletionState *new_state; CompletionState *new_state;
gint tries = 0;
new_state = g_new (CompletionState, 1); new_state = g_new (CompletionState, 1);
utf8_cwd = get_current_dir_utf8 (); utf8_cwd = get_current_dir_utf8 ();
tryagain: tryagain:
tries++;
new_state->reference_dir = NULL; new_state->reference_dir = NULL;
new_state->completion_dir = NULL; new_state->completion_dir = NULL;
new_state->active_completion_dir = NULL; new_state->active_completion_dir = NULL;
@ -2697,6 +2698,7 @@ tryagain:
{ {
/* Directories changing from underneath us, grumble */ /* Directories changing from underneath us, grumble */
strcpy (utf8_cwd, G_DIR_SEPARATOR_S); strcpy (utf8_cwd, G_DIR_SEPARATOR_S);
if (tries < 2)
goto tryagain; goto tryagain;
} }