diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/locking/locking.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c index d4c68f8841..d0b6eaf995 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -646,6 +646,12 @@ bool share_mode_stale_pid(struct share_mode_data *d, unsigned idx) return false; } e = &d->share_modes[idx]; + if (e->stale) { + /* + * Checked before + */ + return true; + } if (serverid_exists(&e->pid)) { DEBUG(10, ("PID %s (index %u out of %u) still exists\n", procid_str_static(&e->pid), idx, |