[gtk+/gtk-3-18] placessidebar: do not crash if uris is NULL



commit dae857a94d66839d1623e017e890345f2d81c06e
Author: Dominique Leuenberger <dimstar opensuse org>
Date:   Thu Oct 29 13:56:18 2015 +0100

    placessidebar: do not crash if uris is NULL
    
    On Drag'n'Drop actions across system boundaries (VM host to guest), the
    happen to be null.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=757298

 gtk/gtkplacessidebar.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c
index d8a2190..83c9f88 100644
--- a/gtk/gtkplacessidebar.c
+++ b/gtk/gtkplacessidebar.c
@@ -1715,7 +1715,7 @@ build_file_list_from_uris (const gchar **uris)
   gint i;
 
   result = NULL;
-  for (i = 0; uris[i]; i++)
+  for (i = 0; uris && uris[i]; i++)
     {
       GFile *file;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]