From 2bbc88ce52cbfd9ce6a3c47d1397a21f6a972495 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Sat, 22 Jun 2013 14:24:53 +0200 Subject: [PATCH] OSX: fix crash when no SD are found --- modules/gui/macosx/MainWindow.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m index 2a499cf3a5..d4e0f0c3b0 100644 --- a/modules/gui/macosx/MainWindow.m +++ b/modules/gui/macosx/MainWindow.m @@ -227,8 +227,8 @@ static VLCMainWindow *_o_sharedInstance = nil; SideBarItem *internetItem = [SideBarItem itemWithTitle:_NS("INTERNET") identifier:@"internet"]; /* SD subnodes, inspired by the Qt4 intf */ - char **ppsz_longnames; - int *p_categories; + char **ppsz_longnames = NULL; + int *p_categories = NULL; char **ppsz_names = vlc_sd_GetNames(pl_Get(VLCIntf), &ppsz_longnames, &p_categories); if (!ppsz_names) msg_Err(VLCIntf, "no sd item found"); //TODO @@ -239,7 +239,7 @@ static VLCMainWindow *_o_sharedInstance = nil; NSMutableArray *lanItems = [[NSMutableArray alloc] init]; NSMutableArray *mycompItems = [[NSMutableArray alloc] init]; NSString *o_identifier; - for (; *ppsz_name; ppsz_name++, ppsz_longname++, p_category++) { + for (; ppsz_name && *ppsz_name; ppsz_name++, ppsz_longname++, p_category++) { o_identifier = [NSString stringWithCString: *ppsz_name encoding: NSUTF8StringEncoding]; switch (*p_category) { case SD_CAT_INTERNET: -- 2.39.5