Fixing undefined index 'foo'

remotes/origin/poc-doctrine-migrations
Thomas Müller 11 years ago
parent 8902e2be73
commit 2104c2ffdd
  1. 3
      lib/private/lock/memcachelockingprovider.php

@ -111,6 +111,9 @@ class MemcacheLockingProvider implements ILockingProvider {
throw new LockedException($path);
}
unset($this->acquiredLocks['exclusive'][$path]);
if (!isset($this->acquiredLocks['shared'][$path])) {
$this->acquiredLocks['shared'][$path] = 0;
}
$this->acquiredLocks['shared'][$path]++;
} else if ($targetType === self::LOCK_EXCLUSIVE) {
// we can only change a shared lock to an exclusive if there's only a single owner of the shared lock

Loading…
Cancel
Save