diff options
Diffstat (limited to 'security')
-rw-r--r-- | security/openvpn-auth-ldap/files/patch-src_auth-ldap.m | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/security/openvpn-auth-ldap/files/patch-src_auth-ldap.m b/security/openvpn-auth-ldap/files/patch-src_auth-ldap.m new file mode 100644 index 000000000000..80e8c794b66e --- /dev/null +++ b/security/openvpn-auth-ldap/files/patch-src_auth-ldap.m @@ -0,0 +1,14 @@ +Fix crash on close if there is no ctx. + +--- src/auth-ldap.m.orig 2012-08-15 13:55:46 UTC ++++ src/auth-ldap.m +@@ -245,6 +245,9 @@ OPENVPN_EXPORT void + { + ldap_ctx *ctx = handle; + ++ if (!ctx) ++ return; ++ + /* Clean up the configuration file */ + [ctx->config release]; + |