diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-08-02 00:53:47 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-08-02 00:53:47 +0200 |
commit | 546ac7936340312cf272969ff83317ae4d50d2b4 (patch) | |
tree | 7ecadca11430c8624d9f80aae7c348fa4d65b969 /src/verify.c | |
parent | b22364f4af3564f0dd9a5f4e150bb09747bd5c4e (diff) | |
download | fastd-546ac7936340312cf272969ff83317ae4d50d2b4.tar fastd-546ac7936340312cf272969ff83317ae4d50d2b4.zip |
Introduce and use alloc helpers
These new helpers will terminate fastd on allocation failures and add some
additional convenience (allow strdup with NULL; typesafe new(type) macros).
Diffstat (limited to 'src/verify.c')
-rw-r--r-- | src/verify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.c b/src/verify.c index 2890725..2031079 100644 --- a/src/verify.c +++ b/src/verify.c @@ -115,7 +115,7 @@ fastd_tristate_t fastd_verify_peer(fastd_peer_t *peer, fastd_socket_t *sock, con return fastd_tristate_false; } - verify_arg_t *arg = calloc(1, sizeof(verify_arg_t) + data_len); + verify_arg_t *arg = fastd_alloc0(sizeof(verify_arg_t) + data_len); arg->env = env; arg->ret_len = sizeof(fastd_async_verify_return_t) + data_len; |