mirror of
https://github.com/pbatard/rufus.git
synced 2025-06-01 23:38:30 -04:00
[misc] try to support folks who use a symlink for their temp dir
* Microsoft's WIM mounting APIs can't use symlinked directories and some folks want to use a symlinked temp dir... * Closes #2084
This commit is contained in:
parent
71e99add76
commit
3e81b38c2d
4 changed files with 42 additions and 6 deletions
|
@ -1104,7 +1104,7 @@ out:
|
|||
// Extract all of the isolinux.bin files we found to identify their versions
|
||||
for (i=0; i<isolinux_path.Index; i++) {
|
||||
char isolinux_tmp[MAX_PATH];
|
||||
static_sprintf(isolinux_tmp, "%s\\isolinux.tmp", temp_dir);
|
||||
static_sprintf(isolinux_tmp, "%sisolinux.tmp", temp_dir);
|
||||
size = (size_t)ExtractISOFile(src_iso, isolinux_path.String[i], isolinux_tmp, FILE_ATTRIBUTE_NORMAL);
|
||||
if (size == 0) {
|
||||
uprintf(" Could not access %s", isolinux_path.String[i]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue