Re: [Openvpn-devel] [PATCH] Fix plugin_call() struct env_set corruption

2011-11-07 Thread David Sommerseth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 23/10/11 13:15, David Sommerseth wrote: > For some odd reasons, the static inline plugin_call() function > managed to corrupt the struct env_set *es pointer. The result was > that es->list pointed at an invalid address, which again caused SEGV. >

Re: [Openvpn-devel] [PATCH 3/8] Fixed missing comma in plugin.h

2011-11-07 Thread David Sommerseth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 31/10/11 16:29, Adriaan de Jong wrote: > --- a/plugin.h +++ b/plugin.h @@ -132,7 +132,7 @@ plugin_call(const > struct plugin_list *pl, { return plugin_call_ssl(pl, type, av, pr, es > #ifdef USE_SSL - -1, NULL + , -1, NULL #endif ); } ACK