diff --git a/trunk/src/common/crypto.c b/trunk/src/common/crypto.c index a8ecbd9dd6..3ddb854f64 100644 --- a/trunk/src/common/crypto.c +++ b/trunk/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);