Re: [Openvpn-devel] [PATCH 2/2] Fixed potential NULL pointer issue

2010-04-18 Thread Gert Doering
Hi, On Sat, Apr 17, 2010 at 09:06:09PM +0200, David Sommerseth wrote: > If create_temp_file() returns NULL, this strlen() check would cause > a SEGV. Looks "obviously correct". ACK. gert -- USENET is *not* the non-clickable part of WWW!

[Openvpn-devel] [PATCH 2/2] Fixed potential NULL pointer issue

2010-04-17 Thread David Sommerseth
From: David Sommerseth If create_temp_file() returns NULL, this strlen() check would cause a SEGV. Signed-off-by: David Sommerseth --- ssl.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ssl.c b/ssl.c index 552bcbe..171a1d7 100644 --- a/ssl.c +++ b/ssl.c @@ -3194,7