Merge pull request #9522 from nextcloud/backport/9325/stable13

[stable13] Fix for unbound cloned LDAP connections
This commit is contained in:
Roeland Jago Douma 2018-05-23 09:18:21 +02:00 committed by GitHub
commit 01d3586a0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -125,6 +125,9 @@ class Connection extends LDAPUtility {
public function __clone() {
$this->configuration = new Configuration($this->configPrefix,
!is_null($this->configID));
if(count($this->bindResult) !== 0 && $this->bindResult['result'] === true) {
$this->bindResult = [];
}
$this->ldapConnectionRes = null;
$this->dontDestruct = true;
}