ntdll: Print an error if unable to unwind due to missing libunwind on arm64.
Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e9939c9301
commit
4463ccb267
|
@ -319,6 +319,7 @@ NTSTATUS CDECL unwind_builtin_dll( ULONG type, DISPATCHER_CONTEXT *dispatch, CON
|
||||||
context->u.s.X28, context->u.s.Fp, context->u.s.Lr, context->Sp );
|
context->u.s.X28, context->u.s.Fp, context->u.s.Lr, context->Sp );
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
#else
|
#else
|
||||||
|
ERR("libunwind not available, unable to unwind\n");
|
||||||
return STATUS_INVALID_DISPOSITION;
|
return STATUS_INVALID_DISPOSITION;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue