summaryrefslogtreecommitdiff
path: root/ms
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-06-14 16:19:37 -0400
committerRich Salz <rsalz@openssl.org>2016-06-15 13:42:17 -0400
commit75f90688fb2dec0f897cad8be8b92be725c5016b (patch)
tree212350c946fa781d473cbced035e35203f1cf634 /ms
parent5e102f96eb6fcdba1db2dba41132f92fa492aea0 (diff)
downloadopenssl-new-75f90688fb2dec0f897cad8be8b92be725c5016b.tar.gz
RT4526: Call TerminateProcess, not ExitProcess
Reviewed-by: Richard Levitte <levitte@openssl.org> (cherry picked from commit 9c1a9ccf65d0ea1912675d3a622fa8e51b524b9e)
Diffstat (limited to 'ms')
-rw-r--r--ms/uplink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/uplink.c b/ms/uplink.c
index e58ab9d8f5..c5c9cd4f71 100644
--- a/ms/uplink.c
+++ b/ms/uplink.c
@@ -19,7 +19,7 @@ static TCHAR msg[128];
static void unimplemented(void)
{
OPENSSL_showfatal(sizeof(TCHAR) == sizeof(char) ? "%s\n" : "%S\n", msg);
- ExitProcess(1);
+ TerminateProcess(GetCurrentProcess(), 1);
}
void OPENSSL_Uplink(volatile void **table, int index)