diff options
author | Ladislav Zezula <zezula@volny.cz> | 2023-08-04 11:19:49 +0200 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2023-08-04 11:19:49 +0200 |
commit | 8debce7eab1cfb7a145d592d757b75e7cac83610 (patch) | |
tree | 928021fc7f634eaf5a8686feb1e85d745523c918 /make-msvc.bat | |
parent | 31dd4a36fc6b49330915886f56ac9a42d3e3150c (diff) |
Fixed heap overflow in handling of file patch
Diffstat (limited to 'make-msvc.bat')
-rw-r--r-- | make-msvc.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-msvc.bat b/make-msvc.bat index 2422490..6e3782d 100644 --- a/make-msvc.bat +++ b/make-msvc.bat @@ -8,7 +8,7 @@ set SAVE_PATH=%PATH% set LIB_NAME=StormLib :: Determine where the program files are, both for 64-bit and 32-bit Windows -if exist "%ProgramFiles%" set PROGRAM_FILES_X64=%ProgramFiles% +if exist "%ProgramW6432%" set PROGRAM_FILES_X64=%ProgramW6432% if exist "%ProgramFiles%" set PROGRAM_FILES_DIR=%ProgramFiles% if exist "%ProgramFiles(x86)%" set PROGRAM_FILES_DIR=%ProgramFiles(x86)% |