Commit a47b86ef authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

misc/darwin_specific.c: Fix identation (oops). Fix a crash on startup (oops).

parent 18ce7125
......@@ -66,7 +66,8 @@ static CFArrayRef copy_all_locale_indentifiers(void)
void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] )
{
char i_dummy;
char *p_char, *p_oldchar = &i_dummy;
char *p_char = NULL;
char *p_oldchar = &i_dummy;
int i;
/* Get the full program path and name */
......@@ -75,7 +76,6 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] )
for (i = 0; i < _dyld_image_count(); i++)
{
char * psz_img_name = _dyld_get_image_name(i);
printf("%s\n", psz_img_name );
if( strstr( psz_img_name, "VLC.framework/Version/Current/VLC" ) )
p_char = strdup( psz_img_name );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment