Site icon EfmSoft

What does NTSTATUS 0xC000071E (STATUS_CALLBACK_RETURNED_LDR_LOCK) mean?

 
Previous Next
STATUS_CALLBACK_RETURNED_TRANSACTION STATUS_CALLBACK_RETURNED_LANG

STATUS_CALLBACK_RETURNED_LDR_LOCK

The callback leaked the loader lock

The loader lock serializes sensitive DLL load, unload, and initialization activity. Returning a pooled worker while it still owns this lock can block future module operations and create lock-order deadlocks in unrelated callbacks. The status indicates a severe cleanup failure, not ordinary DLL search failure.

Avoid performing broad callback work from DllMain or other loader-locked paths. If callback code dynamically loads modules, do not call back into shutdown code that waits for pool work while holding loader-sensitive locks. Every acquisition must be balanced before the worker returns.

What to inspect

References


Looking for a different code? Search another status or error code.

Exit mobile version