diff options
author | David Sommerseth <dazo@users.sourceforge.net> | 2010-04-17 21:03:06 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2010-10-21 11:37:03 +0200 |
commit | d2bf22af84a1758d6ba281cd22e4ff44a7bb40c6 (patch) | |
tree | 8385ab43d6c3c6fc481024356449e9f2a1df9400 /ssl.c | |
parent | Removed no longer needed delete_file() call (diff) | |
download | openvpn-d2bf22af84a1758d6ba281cd22e4ff44a7bb40c6.tar.xz |
Fixed potential NULL pointer issue
If create_temp_file() returns NULL, this strlen() check would cause
a SEGV.
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Acked-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'ssl.c')
-rw-r--r-- | ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3265,7 +3265,7 @@ verify_user_pass_script (struct tls_session *session, const struct user_pass *up } done: - if (strlen (tmp_file) > 0) + if (tmp_file && strlen (tmp_file) > 0) delete_file (tmp_file); argv_reset (&argv); |