From 3a89d27e66ffa28cffc9806ad68023d8cbc6c0d5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 19 Mar 2003 21:27:21 +0000 Subject: [PATCH] Correct defeatest attitude in crypto_new_cipher_env svn:r201 --- src/common/crypto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/crypto.c b/src/common/crypto.c index a8ecbd9dd6..3ddb854f64 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -208,6 +208,7 @@ crypto_cipher_env_t *crypto_new_cipher_env(int type) if (key_len && !(env->key = (unsigned char *)malloc(key_len))) goto err; + return env; err: if (env->key) free(env->key); -- 2.47.3