Dereference after null check
Either the check against null is unnecessary, or there may be a null pointer dereference. Pointer is checked against null but then dereferenced anyway
/src/mongo/db/concurrency/lock_state.cpp:375: FORWARD_NULL 122131 Comparing "opCtx" to null implies that "opCtx" might be null.
- is caused by
-
SERVER-63825 Report metrics for read/write queues
- Closed