From: Nils Larsch Date: Sat, 11 Mar 2006 11:58:47 +0000 (+0000) Subject: fix "missing initializer" warning X-Git-Tag: OpenSSL_0_9_8k^2~1520 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2c059d58d963bf713d33aa4a938133ddd9eecd41;p=oweals%2Fopenssl.git fix "missing initializer" warning --- diff --git a/crypto/dso/dso_null.c b/crypto/dso/dso_null.c index a213f93088..49d842d1f5 100644 --- a/crypto/dso/dso_null.c +++ b/crypto/dso/dso_null.c @@ -79,7 +79,8 @@ static DSO_METHOD dso_meth_null = { NULL, /* dso_merger */ NULL, /* init */ NULL, /* finish */ - NULL /* pathbyaddr */ + NULL, /* pathbyaddr */ + NULL /* globallookup */ }; DSO_METHOD *DSO_METHOD_null(void)