¿Qué significa el código NTSTATUS 0xC0000228 (STATUS_STACK_OVERFLOW_READ)?

 
Anterior Siguiente
STATUS_RECOVERY_FAILURE STATUS_FAIL_CHECK

STATUS_STACK_OVERFLOW_READ

Qué significa STATUS_STACK_OVERFLOW_READ

STATUS_STACK_OVERFLOW_READ es un control/internal routing result cuyo mensaje indica que la request debe pasar por stack-overflow handling. A pesar de “READ”, no debe diagnosticarse como file/device read failure.

Puede aparecer durante un acceso de memoria cerca de un stack agotado. La evidencia es la misma que para STACK_OVERFLOW: bounds, guard page, recursion, frame size e instruction.

Qué comprobar

  • Preserve el raw status para debugger/runtime tooling.
  • Capture stack bounds y guard-page state.
  • Revise recursion y frame sizes.
  • No lo convierta prematuramente en ACCESS_VIOLATION o I/O read error.

Referencias técnicas


¿Buscas un código diferente? Buscar otro código de estado o error.