Commit 9a0a47a5 authored by Rafaël Carré's avatar Rafaël Carré

Win32 one instance: fix segfault

parent 989bf785
...@@ -294,7 +294,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam, ...@@ -294,7 +294,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam,
/* FIXME: This breaks relative paths if calling vlc.exe is /* FIXME: This breaks relative paths if calling vlc.exe is
* started from a different working directory. */ * started from a different working directory. */
char *psz_URI = NULL; char *psz_URI = NULL;
if( strstr( psz_URI, "://" ) == NULL ) if( strstr( ppsz_argv[i_opt], "://" ) == NULL )
psz_URI = vlc_path2uri( ppsz_argv[i_opt], NULL ); psz_URI = vlc_path2uri( ppsz_argv[i_opt], NULL );
playlist_AddExt( p_playlist, playlist_AddExt( p_playlist,
(psz_URI != NULL) ? psz_URI : ppsz_argv[i_opt], (psz_URI != NULL) ? psz_URI : ppsz_argv[i_opt],
......
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