Module: wine Branch: master Commit: 7a9679a717e4b1d8c4d9e30181d49e88cc1eb116 URL: https://gitlab.winehq.org/wine/wine/-/commit/7a9679a717e4b1d8c4d9e30181d49e8...
Author: André Zwing nerv@dawncrow.de Date: Tue Apr 25 21:45:30 2023 +0200
ntdll: Print RPC_S_SERVER_UNAVAILABLE exceptions.
---
dlls/ntdll/exception.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c index fc3e8982a98..9c69eb0eabe 100644 --- a/dlls/ntdll/exception.c +++ b/dlls/ntdll/exception.c @@ -94,6 +94,7 @@ const char *debugstr_exception_code( DWORD code ) case EXCEPTION_WINE_CXX_EXCEPTION: return "EXCEPTION_WINE_CXX_EXCEPTION"; case EXCEPTION_WINE_NAME_THREAD: return "EXCEPTION_WINE_NAME_THREAD"; case EXCEPTION_WINE_STUB: return "EXCEPTION_WINE_STUB"; + case RPC_S_SERVER_UNAVAILABLE: return "RPC_S_SERVER_UNAVAILABLE"; } return "unknown"; }