Clean up a comment.

SetProcessDEPPolicy() is the API; PSetProcessDEPPolicy is just a local
pointer variable that either points to that API's implementation (if
it's available) or is null (if it isn't).

Change-Id: I676fbb75019e32af511cefa6f1c7b7124ac9d8e8
Reviewed-on: https://code.wireshark.org/review/2735
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-06-30 16:02:57 -07:00
parent 62fa030a03
commit ac88f71220
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ init_process_policies(void)
* If we have SetProcessDEPPolicy(), turn "data execution
* prevention" on - i.e., if the MMU lets you set execute
* permission on a per-page basis, turn execute permission
* off on most data pages. PSetProcessDEPPolicy() fails on
* off on most data pages. SetProcessDEPPolicy() fails on
* 64-bit Windows (it's *always* on there), but if it fails,
* we don't care (we did our best), so we don't check for
* errors.