1
1

1999-03-19 Miguel de Icaza <miguel@nuclecu.unam.mx>

* gpopup2.c (create_mime_actions): Free full_name, just once, not
	once per action.
Этот коммит содержится в:
Miguel de Icaza 1999-03-19 14:16:27 +00:00
родитель ba56e04c4c
Коммит c30a2e3bcc
2 изменённых файлов: 10 добавлений и 5 удалений

Просмотреть файл

@ -1,3 +1,8 @@
1999-03-19 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gpopup2.c (create_mime_actions): Free full_name, just once, not
once per action.
1999-03-19 Paul Raines <raines@slac.stanford.edu>
* gtkdtree.c (gtk_dtree_load_path): Uses a phantom node to get

Просмотреть файл

@ -410,13 +410,13 @@ create_mime_actions (GtkWidget *menu, WPanel *panel, int pos, DesktopIconInfo *d
gtk_object_set_user_data (GTK_OBJECT (uiinfo[0].widget), key);
/* Remember to free this memory */
gtk_signal_connect (GTK_OBJECT (uiinfo[0].widget), "destroy",
(GtkSignalFunc) free_on_destroy,
full_name);
}
/* Remember to free this memory */
gtk_signal_connect (GTK_OBJECT (uiinfo[0].widget), "destroy",
(GtkSignalFunc) free_on_destroy,
full_name);
if (pos_init != pos) {
uiinfo[0].type = GNOME_APP_UI_SEPARATOR;
fill_menu (GTK_MENU_SHELL (menu), uiinfo, pos++);