Error code

Windows ERROR_STACK_OVERFLOW

WINDOWSERROR_STACK_OVERFLOW
System Error Code· A POSIX/system errno returned when a system call fails.

What it means

Recursion too deep; the stack overflowed..

How to fix it

  1. Update or patch the application as this is typically a software defect.
  2. reproduce and report the crash to the vendor.
  3. if you control the code fix unbounded recursion or increase the thread stack size.
  4. restart the application to recover.

Not affiliated with Windows. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.