Fixed a problem with directing an -extract to the / directory of disk

This commit is contained in:
Thomas Schmitt 2012-02-27 14:52:17 +00:00
parent d40b26e8bd
commit 46293e457b
1 changed files with 7 additions and 4 deletions

View File

@ -1679,10 +1679,13 @@ int Xorriso_make_restore_path(struct XorrisO *xorriso,
}
if(strlen(dpfx) + strlen(img_path) - li + 1 >= SfileadrL)
return(-1);
if(img_path[li]=='/')
sprintf(disk_path, "%s/%s", dpfx, img_path + li + 1);
if(img_path[li]=='/') {
if(dpfx[0] == '/' && dpfx[1] == 0)
sprintf(disk_path, "/%s", img_path + li + 1);
else
strcpy(disk_path, dpfx);
sprintf(disk_path, "%s/%s", dpfx, img_path + li + 1);
} else
strcpy(disk_path, dpfx); /* img_path[li] is 0, img_path equals ipfx */
found_s= s;
found_d= d;
if(s != *img_prefixes || !(flag & 1))