Revert "Fix memory leak on certificate request attempt"

Unfortunately this did not fix the leak as I originally thought.

This reverts commit 2e9737f118.
pull/1/head
Timothy Pearson 9 years ago
parent 2e9737f118
commit 3991980d35

@ -371,14 +371,12 @@ int LDAPManager::bind(TQString* errstr) {
}
int retcode = ldap_initialize(&ldapconn, uri.ascii());
if (retcode < 0) {
ldap_unbind_ext_s(ldapconn, NULL, NULL);
if (errstr) *errstr = i18n("<qt>Unable to connect to LDAP server %1 on port %2<p>Reason: [%3] %4</qt>").arg(m_host).arg(m_port).arg(retcode).arg(ldap_err2string(retcode));
else KMessageBox::error(0, i18n("<qt>Unable to connect to LDAP server %1 on port %2<p>Reason: [%3] %4</qt>").arg(m_host).arg(m_port).arg(retcode).arg(ldap_err2string(retcode)), i18n("Unable to connect to server!"));
return -1;
}
retcode = ldap_set_option(ldapconn, LDAP_OPT_PROTOCOL_VERSION, &requested_ldap_version);
if (retcode != LDAP_OPT_SUCCESS) {
ldap_unbind_ext_s(ldapconn, NULL, NULL);
if (errstr) *errstr = i18n("<qt>Unable to connect to LDAP server %1 on port %2<p>Reason: [%3] %4</qt>").arg(m_host).arg(m_port).arg(retcode).arg(ldap_err2string(retcode));
else KMessageBox::error(0, i18n("<qt>Unable to connect to LDAP server %1 on port %2<p>Reason: [%3] %4</qt>").arg(m_host).arg(m_port).arg(retcode).arg(ldap_err2string(retcode)), i18n("Unable to connect to server!"));
return -1;

Loading…
Cancel
Save