Commit 0cb5636a authored by Christophe Mutricy's avatar Christophe Mutricy

Fix [21233]

parent b6194a36
...@@ -328,12 +328,16 @@ static int vlclua_scripts_batch_execute( vlc_object_t *p_this, ...@@ -328,12 +328,16 @@ static int vlclua_scripts_batch_execute( vlc_object_t *p_this,
if( ( utf8_stat( "share/luaplaylist", &stat_info ) == -1 ) if( ( utf8_stat( "share/luaplaylist", &stat_info ) == -1 )
|| !S_ISDIR( stat_info.st_mode ) ) || !S_ISDIR( stat_info.st_mode ) )
{ {
ppsz_dir_list[1] = strdup( DATA_PATH "/luaplaylist" ); if( asprintf( &ppsz_dir_list[1],
DATA_PATH DIR_SEP "%s", luadirname ) < 0 )
return VLC_ENOMEM;
} }
else else
# endif # endif
{ {
ppsz_dir_list[1] = strdup( "share/luaplaylist" ); if( asprintf( &ppsz_dir_list[1],
"share" DIR_SEP "%s", luadirname ) < 0 )
return VLC_ENOMEM;
} }
} }
# endif # endif
......
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