Changeset 205497 in webkit


Ignore:
Timestamp:
Sep 6, 2016 11:55:02 AM (8 years ago)
Author:
pvollan@apple.com
Message:

[Win] Enable strict runtime stack buffer checks.
https://bugs.webkit.org/show_bug.cgi?id=161629

Reviewed by Brent Fulgham.

  • wtf/Platform.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r205488 r205497  
     12016-09-06  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] Enable strict runtime stack buffer checks.
     4        https://bugs.webkit.org/show_bug.cgi?id=161629
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * wtf/Platform.h:
     9
    1102016-09-06  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r205198 r205497  
    12251225#endif
    12261226
     1227#if COMPILER(MSVC)
     1228/* Enable strict runtime stack buffer checks. */
     1229#pragma strict_gs_check(on)
     1230#endif
     1231
    12271232#endif /* WTF_Platform_h */
Note: See TracChangeset for help on using the changeset viewer.