projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd60efe
)
Fix return type for CRYPTO_THREAD_run_once
author
Mat
<mberchtold@gmail.com>
Thu, 10 Mar 2016 01:29:02 +0000
(
02:29
+0100)
committer
Rich Salz
<rsalz@akamai.com>
Thu, 10 Mar 2016 01:42:30 +0000
(20:42 -0500)
return type should be int and not void
Signed-off-by: Rich Salz <rsalz@akamai.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/threads_win.c
patch
|
blob
|
history
diff --git
a/crypto/threads_win.c
b/crypto/threads_win.c
index 741e8f827e97b946b8c1d87502927083c5895a20..5a14872d1ca784c74ca7aa8e805e99356af7e98e 100644
(file)
--- a/
crypto/threads_win.c
+++ b/
crypto/threads_win.c
@@
-133,7
+133,7
@@
BOOL CALLBACK once_cb(PINIT_ONCE once, PVOID p, PVOID *pp)
return TRUE;
}
-
void
CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void))
+
int
CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void))
{
if (InitOnceExecuteOnce(once, once_cb, init, NULL))
return 0;