mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-11 09:31:13 +02:00
Merge pull request #101 from henricj/dep
Enable the DEP and ASLR flags. https://msdn.microsoft.com/en-us/library/bb430720.aspx DEP: Prevents data being executed as code. We'd only need it disabled if we were doing self modifying code that jumped into 'data'. ASLR: Randomizes program layout, so malicious code jumping to a fixed address would need change. ASLR gives far less protection than one might think, given techniques to work around it. Some tools depend on ASLR being off, so the decision to enable it may be something we reverse later.
This commit is contained in:
commit
2f406647da
@ -78,8 +78,6 @@
|
||||
<AdditionalLibraryDirectories>$(OutDir);$(WXWIN)\lib\vc_dll;$(GSTREAMER_SDK)\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<StackReserveSize>8388608</StackReserveSize>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention />
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
@ -114,8 +112,6 @@
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<StackReserveSize>8388608</StackReserveSize>
|
||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
||||
<DataExecutionPrevention />
|
||||
<TargetMachine>MachineX86</TargetMachine>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user