[openssl-commits] [openssl] master update
Matt Caswell
matt at openssl.org
Mon May 11 11:12:08 UTC 2015
The branch master has been updated
via 7786005d0d30816fd3cd3ee4bad11bf520b1327a (commit)
from 8f744cceff5bce8cb00a6ddd739c1bbb85c142ea (commit)
- Log -----------------------------------------------------------------
commit 7786005d0d30816fd3cd3ee4bad11bf520b1327a
Author: Kurt Cancemi <kurt at x64architecture.com>
Date: Thu May 7 18:19:20 2015 -0400
Add missing terminating NULL to speed_options table.
This would cause memory corruption in opt_init() because it relies on the
terminating NULL.
RT#3842
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/speed.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/apps/speed.c b/apps/speed.c
index 9ab1648..4b3da87 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -374,6 +374,7 @@ OPTIONS speed_options[] = {
#ifndef OPENSSL_NO_ENGINE
{"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
#endif
+ {NULL},
};
#define D_MD2 0
More information about the openssl-commits
mailing list