diff options
author | mandree <mandree@FreeBSD.org> | 2015-01-17 18:28:50 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2015-01-17 18:28:50 +0800 |
commit | 52f40f5dc74396eaf58ae9315065de066dc776c1 (patch) | |
tree | 505c87b75841e802e3d24b42894addf4dfe8a5ed /security | |
parent | 4c4105403dc04103801a814e90940b2f479ddf9c (diff) | |
download | freebsd-ports-gnome-52f40f5dc74396eaf58ae9315065de066dc776c1.tar.gz freebsd-ports-gnome-52f40f5dc74396eaf58ae9315065de066dc776c1.tar.zst freebsd-ports-gnome-52f40f5dc74396eaf58ae9315065de066dc776c1.zip |
Add a fix to prevent crashes on close if initialization failed.
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]; + |