Commits
Travis Cross committed 7d11e199830
Check for null hash or private while holding lock What if the hash were destroyed by one thread holding the lock while another thread was waiting for the lock? The waiting thread would have already checked that the hash was non-null and would proceed on that assumption after acquiring the lock. With this commit we check only after acquiring the lock. ref: FS-6783 ref: FS-6775