diff options
author | 2014-04-21 11:19:28 +0000 | |
---|---|---|
committer | 2014-04-21 11:19:28 +0000 | |
commit | 1ee204e48f8d01dd16bcbc929c6c227c91ac37e9 (patch) | |
tree | 3c48fce1348149a3e59eae1b4e3fdb1f6c45da09 /lib/libssl/src/crypto/cryptlib.c | |
parent | Replace entire printf-like guts with calls to libc snprintf. (diff) | |
download | wireguard-openbsd-1ee204e48f8d01dd16bcbc929c6c227c91ac37e9.tar.xz wireguard-openbsd-1ee204e48f8d01dd16bcbc929c6c227c91ac37e9.zip |
modernize malloc call
Diffstat (limited to 'lib/libssl/src/crypto/cryptlib.c')
-rw-r--r-- | lib/libssl/src/crypto/cryptlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/cryptlib.c b/lib/libssl/src/crypto/cryptlib.c index addc27eb080..0058e8328b3 100644 --- a/lib/libssl/src/crypto/cryptlib.c +++ b/lib/libssl/src/crypto/cryptlib.c @@ -241,7 +241,7 @@ CRYPTO_get_new_dynlockid(void) } CRYPTO_w_unlock(CRYPTO_LOCK_DYNLOCK); - pointer = (CRYPTO_dynlock *)malloc(sizeof(CRYPTO_dynlock)); + pointer = malloc(sizeof(CRYPTO_dynlock)); if (pointer == NULL) { CRYPTOerr(CRYPTO_F_CRYPTO_GET_NEW_DYNLOCKID, ERR_R_MALLOC_FAILURE); |