Merge branch 'bug27461-029' into bug27461-032

Fix a minor merge conflict due to an #endif comment.
This commit is contained in:
teor 2018-09-07 13:00:34 +10:00
commit d2105ff5d5
No known key found for this signature in database
GPG Key ID: 10FEAA0E7075672A
2 changed files with 13 additions and 0 deletions

5
changes/bug27461 Normal file
View File

@ -0,0 +1,5 @@
o Minor bugfixes (compilation):
- Stop calling SetProcessDEPPolicy() on 64-bit Windows. It is not
supported, and always fails. Some compilers warn about the function
pointer cast on 64-bit Windows.
Fixes bug 27461; bugfix on 0.2.2.23-alpha.

View File

@ -3719,6 +3719,13 @@ tor_main(int argc, char *argv[])
#endif #endif
/* On heap corruption, just give up; don't try to play along. */ /* On heap corruption, just give up; don't try to play along. */
HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, NULL, 0); HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, NULL, 0);
/* SetProcessDEPPolicy is only supported on 32-bit Windows.
* (On 64-bit Windows it always fails, and some compilers don't like the
* PSETDEP cast.)
* 32-bit Windows defines _WIN32.
* 64-bit Windows defines _WIN32 and _WIN64. */
#ifndef _WIN64
/* Call SetProcessDEPPolicy to permanently enable DEP. /* Call SetProcessDEPPolicy to permanently enable DEP.
The function will not resolve on earlier versions of Windows, The function will not resolve on earlier versions of Windows,
and failure is not dangerous. */ and failure is not dangerous. */
@ -3732,6 +3739,7 @@ tor_main(int argc, char *argv[])
setdeppolicy(3); setdeppolicy(3);
} }
} }
#endif /* !defined(_WIN64) */
#endif /* defined(_WIN32) */ #endif /* defined(_WIN32) */
configure_backtrace_handler(get_version()); configure_backtrace_handler(get_version());