Skip to content

Commit

Permalink
handle C:/ in import paths (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
aureliendavid committed Aug 15, 2019
1 parent ac92149 commit e739454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/mp4box/fileimport.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ GF_Err import_file(GF_ISOFile *dest, char *inName, u32 import_flags, Double forc
force_par = GF_FALSE;
/*use ':' as separator, but beware DOS paths...*/
ext = strchr(szName, ':');
if (ext && ext[1]=='\\') ext = strchr(szName+2, ':');
if (ext && (ext[1]=='\\' || ext[1] == '/')) ext = strchr(szName+2, ':');

handler_name = NULL;
rvc_config = NULL;
Expand Down

0 comments on commit e739454

Please sign in to comment.