Commit 5e3c93f1 authored by Erwan Tulou's avatar Erwan Tulou

skins2: replace unlink with vlc_unlink

parent 43822a61
...@@ -640,7 +640,7 @@ int tar_extract_all( TAR *t, char *prefix ) ...@@ -640,7 +640,7 @@ int tar_extract_all( TAR *t, char *prefix )
fprintf( stderr, "error writing %s skipping...\n", fname ); fprintf( stderr, "error writing %s skipping...\n", fname );
fclose( outfile ); fclose( outfile );
outfile = NULL; outfile = NULL;
unlink( fname ); vlc_unlink( fname );
} }
} }
remaining -= bytes; remaining -= bytes;
......
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