From 2d4edb43194e8d5b61624ae1c23b00c6a0ca0dd9 Mon Sep 17 00:00:00 2001 From: william Date: Wed, 22 Apr 2015 18:19:34 -0700 Subject: forgot NULL terminator on ssleay_version array --- src/openssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openssl.c b/src/openssl.c index edd3048..9fc67c7 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -1329,6 +1329,7 @@ static const auxL_IntegerReg ssleay_version[] = { #ifdef SSLEAY_DIR { "SSLEAY_DIR", SSLEAY_DIR }, #endif + { NULL, 0 }, }; int luaopen__openssl(lua_State *L) { -- cgit v1.2.3-59-g8ed1b