Commit 1a3466cd authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix windows build

parent f0755417
...@@ -1801,10 +1801,10 @@ static int GetSCIData( char *psz_ipod, uint32_t **pp_sci, ...@@ -1801,10 +1801,10 @@ static int GetSCIData( char *psz_ipod, uint32_t **pp_sci,
strlen( p_tmp ) ) ); strlen( p_tmp ) ) );
psz_path = FromLocale( p_tmp ); psz_path = FromLocale( p_tmp );
strncpy( psz_tmp, sizeof( psz_tmp ) - 1, psz_path ); strncpy( p_tmp, psz_path, sizeof( p_tmp ) - 1 );
psz_tmp[sizeof( psz_tmp ) - 1] = '\0'; p_tmp[sizeof( p_tmp ) - 1] = '\0';
LocaleFree( psz_path ); LocaleFree( psz_path );
psz_path = psz_tmp; psz_path = p_tmp;
} }
if( shfolder_dll != NULL ) if( shfolder_dll != NULL )
......
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