From 01fa5ee21d1846a9466c1301a19af28fdce72637 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 5 Mar 2013 19:36:29 +0100 Subject: [PATCH] win/openssl: mark assembled object files as seh safe There are no unsafe structured exception handlers in object files generated from hand-crafted assembly - because they contain no exception handlers at all. --- deps/openssl/openssl.gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/openssl/openssl.gyp b/deps/openssl/openssl.gyp index d3f05e6a87..68d89ce9a2 100644 --- a/deps/openssl/openssl.gyp +++ b/deps/openssl/openssl.gyp @@ -824,6 +824,7 @@ 'action': [ 'ml.exe', '/Zi', + '/safeseh', '/Fo', '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj', '/c', '<(RULE_INPUT_PATH)', ],