Merge pull request #24705 from owncloud/locking-mark-reload-free-9

[9.0] free up memory when releasing the last shared lock
This commit is contained in:
Vincent Petry 2016-05-19 10:28:23 +02:00
commit ceea3e9104
1 changed files with 3 additions and 0 deletions

View File

@ -77,6 +77,9 @@ abstract class AbstractLockingProvider implements ILockingProvider {
if ($type === self::LOCK_SHARED) {
if (isset($this->acquiredLocks['shared'][$path]) and $this->acquiredLocks['shared'][$path] > 0) {
$this->acquiredLocks['shared'][$path]--;
if ($this->acquiredLocks['shared'][$path] === 0) {
unset($this->acquiredLocks['shared'][$path]);
}
}
} else if ($type === self::LOCK_EXCLUSIVE) {
unset($this->acquiredLocks['exclusive'][$path]);