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 7827017886
commit 3caf75ca35

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);
else
strcpy(disk_path, dpfx);
if(img_path[li]=='/') {
if(dpfx[0] == '/' && dpfx[1] == 0)
sprintf(disk_path, "/%s", img_path + li + 1);
else
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))