[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Tue Dec 8 11:05:19 UTC 2015
The branch master has been updated
via c376d170d184c037134005830e584e21f429dfb2 (commit)
from 3cb9fd97ced4a74ba5d4751c455146899164a202 (commit)
- Log -----------------------------------------------------------------
commit c376d170d184c037134005830e584e21f429dfb2
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Dec 8 01:01:13 2015 +0100
Cleanup the EVP_MD_CTX before exit rather than after
Reviewed-by: Matt Caswell <matt at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
test/sha1test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/sha1test.c b/test/sha1test.c
index 676cc84..8cba4b2 100644
--- a/test/sha1test.c
+++ b/test/sha1test.c
@@ -136,8 +136,8 @@ int main(int argc, char *argv[])
if (err)
printf("ERROR: %d\n", err);
#endif
- EXIT(err);
EVP_MD_CTX_free(c);
+ EXIT(err);
return (0);
}
More information about the openssl-commits
mailing list