summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto/arc4random_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/crypto/arc4random_win.h')
-rw-r--r--src/lib/libcrypto/crypto/arc4random_win.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/lib/libcrypto/crypto/arc4random_win.h b/src/lib/libcrypto/crypto/arc4random_win.h
index 7d01d42be5..1fc228d109 100644
--- a/src/lib/libcrypto/crypto/arc4random_win.h
+++ b/src/lib/libcrypto/crypto/arc4random_win.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: arc4random_win.h,v 1.1 2014/07/18 02:05:55 deraadt Exp $ */ 1/* $OpenBSD: arc4random_win.h,v 1.2 2014/07/19 00:08:43 deraadt Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1996, David Mazieres <dm@uun.org> 4 * Copyright (c) 1996, David Mazieres <dm@uun.org>
@@ -22,10 +22,19 @@
22 * Stub functions for portability. 22 * Stub functions for portability.
23 */ 23 */
24 24
25static inline void * 25static inline int
26_rs_allocate(size_t len) 26_rs_allocate(struct _rs **rsp, struct _rsx **rsxp)
27{ 27{
28 return calloc(1, sizeof(*rs)); 28 *rsp = calloc(1, sizeof(**rsp));
29 if (*rsp == NULL)
30 return (-1);
31
32 *rsxp = calloc(1, sizeof(**rsxp));
33 if (*rsxp == NULL) {
34 free(*rsp);
35 return (-1);
36 }
37 return (0);
29} 38}
30 39
31static inline void 40static inline void
@@ -37,9 +46,3 @@ static inline void
37_rs_forkdetect(void) 46_rs_forkdetect(void)
38{ 47{
39} 48}
40
41static inline void
42_rs_forkdetectsetup(struct _rs *rs, size_t len)
43{
44}
45