commit | b548a1f11c06ccdfa4f52a539912d22d77ee309e | [log] [tgz] |
---|---|---|
author | Rich Salz <rsalz@openssl.org> | Fri May 01 10:02:07 2015 -0400 |
committer | Rich Salz <rsalz@openssl.org> | Fri May 01 10:02:07 2015 -0400 |
tree | 37ff8792ddf09e4805aa3ba76b805923d3c52734 | |
parent | 33fbca83dcd05b77f807fab205c4523b8cfe85b5 [diff] [blame] |
free null cleanup finale Don't check for NULL before calling OPENSSL_free Reviewed-by: Richard Levitte <levitte@openssl.org>
diff --git a/ssl/t1_ext.c b/ssl/t1_ext.c index ce54f4f..193cae8 100644 --- a/ssl/t1_ext.c +++ b/ssl/t1_ext.c
@@ -195,8 +195,7 @@ void custom_exts_free(custom_ext_methods *exts) { - if (exts->meths) - OPENSSL_free(exts->meths); + OPENSSL_free(exts->meths); } /* Set callbacks for a custom extension. */