Merge commit 'd40cb726d2'
* commit 'd40cb726d2':
mov: Trim dref absolute path
Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
commit
feb1f7abc5
1 changed files with 7 additions and 0 deletions
|
|
@ -597,6 +597,13 @@ static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||
memmove(dref->path, dref->path+volume_len, len);
|
||||
dref->path[len] = 0;
|
||||
}
|
||||
// trim string of any ending zeros
|
||||
for (j = len - 1; j >= 0; j--) {
|
||||
if (dref->path[j] == 0)
|
||||
len--;
|
||||
else
|
||||
break;
|
||||
}
|
||||
for (j = 0; j < len; j++)
|
||||
if (dref->path[j] == ':' || dref->path[j] == 0)
|
||||
dref->path[j] = '/';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue