Comment 11 for bug 348864

Revision history for this message
Kevin DeKorte (kdekorte-gmail) wrote :

I believe this patch should fix it.

Index: src/support.c
===================================================================
--- src/support.c (revision 1242)
+++ src/support.c (working copy)
@@ -1529,6 +1529,9 @@
     gchar *unescaped = NULL;
     MetaData *data = NULL;

+ if (strlen(uri) < 1)
+ return FALSE;
+
     if (verbose)
         printf("adding %s to playlist\n", uri);
     local_uri = strdup(uri);

please let me know if it does.