Don't return the wrong change. (#155856, Lucas Rocha)

2004-10-20  Matthias Clasen  <mclasen@redhat.com>

	* glib/goption.c (get_change): Don't return the wrong
	change.  (#155856, Lucas Rocha)
This commit is contained in:
Matthias Clasen 2004-10-20 06:04:18 +00:00 committed by Matthias Clasen
parent 39acce7ee6
commit e96fe301fa
6 changed files with 33 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2004-10-20 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (get_change): Don't return the wrong
change. (#155856, Lucas Rocha)
2004-10-17 Matthias Clasen <mclasen@redhat.com>
* glib/gutils.h (G_IS_DIR_SEPARATOR):

View File

@ -1,3 +1,8 @@
2004-10-20 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (get_change): Don't return the wrong
change. (#155856, Lucas Rocha)
2004-10-17 Matthias Clasen <mclasen@redhat.com>
* glib/gutils.h (G_IS_DIR_SEPARATOR):

View File

@ -1,3 +1,8 @@
2004-10-20 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (get_change): Don't return the wrong
change. (#155856, Lucas Rocha)
2004-10-17 Matthias Clasen <mclasen@redhat.com>
* glib/gutils.h (G_IS_DIR_SEPARATOR):

View File

@ -1,3 +1,8 @@
2004-10-20 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (get_change): Don't return the wrong
change. (#155856, Lucas Rocha)
2004-10-17 Matthias Clasen <mclasen@redhat.com>
* glib/gutils.h (G_IS_DIR_SEPARATOR):

View File

@ -1,3 +1,8 @@
2004-10-20 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c (get_change): Don't return the wrong
change. (#155856, Lucas Rocha)
2004-10-17 Matthias Clasen <mclasen@redhat.com>
* glib/gutils.h (G_IS_DIR_SEPARATOR):

View File

@ -428,18 +428,17 @@ get_change (GOptionContext *context,
change = list->data;
if (change->arg_data == arg_data)
break;
goto found;
}
if (!change)
{
change = g_new0 (Change, 1);
change->arg_type = arg_type;
change->arg_data = arg_data;
context->changes = g_list_prepend (context->changes, change);
}
change = g_new0 (Change, 1);
change->arg_type = arg_type;
change->arg_data = arg_data;
context->changes = g_list_prepend (context->changes, change);
found:
return change;
}