[Xfce4-commits] r30429 - in libexo/branches/xfce_4_6: . exo
Nick Schermer
nick at xfce.org
Wed Aug 5 00:08:31 CEST 2009
Author: nick
Date: 2009-08-04 22:08:31 +0000 (Tue, 04 Aug 2009)
New Revision: 30429
Modified:
libexo/branches/xfce_4_6/NEWS
libexo/branches/xfce_4_6/exo/exo-icon-view.c
Log:
Fix possible segfault in exo_icon_view_get_item_at_pos (bug #5633).
Modified: libexo/branches/xfce_4_6/NEWS
===================================================================
--- libexo/branches/xfce_4_6/NEWS 2009-08-04 22:06:52 UTC (rev 30428)
+++ libexo/branches/xfce_4_6/NEWS 2009-08-04 22:08:31 UTC (rev 30429)
@@ -4,6 +4,7 @@
- Fix some issues in exo-open with spaces in arguments.
- Properly handle NULL pixbufs in the toolbars code.
- Make sure the ui-manager is up2date when creating the exo toolbar.
+- Fix possible segfault in exo_icon_view_get_item_at_pos (bug #5633).
0.3.101
=======
Modified: libexo/branches/xfce_4_6/exo/exo-icon-view.c
===================================================================
--- libexo/branches/xfce_4_6/exo/exo-icon-view.c 2009-08-04 22:06:52 UTC (rev 30428)
+++ libexo/branches/xfce_4_6/exo/exo-icon-view.c 2009-08-04 22:08:31 UTC (rev 30429)
@@ -5002,7 +5002,7 @@
GtkTreePath **path,
GtkCellRenderer **cell)
{
- ExoIconViewCellInfo *info;
+ ExoIconViewCellInfo *info = NULL;
ExoIconViewItem *item;
g_return_val_if_fail (EXO_IS_ICON_VIEW (icon_view), FALSE);
More information about the Xfce4-commits
mailing list