https://bugs.winehq.org/show_bug.cgi?id=46023
Anthony Wolfenden bugzilla@wolfenden.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bugzilla@wolfenden.net
--- Comment #3 from Anthony Wolfenden bugzilla@wolfenden.net --- (In reply to Louis Lenders from comment #1)
Hi, I already filed a bug for the initial error window here: https://bugs.winehq.org/show_bug.cgi?id=45980
I don`t know if you`re the same person as who reported this on the forum, but you could try apply the stupid hack below*, and then see if it still crashes later on when you try load saved file and move objects around. Could you try that and report back? Thanks in advance.
diff --git a/dlls/secur32/lsa.c b/dlls/secur32/lsa.c index 694971d714..549de73511 100644 --- a/dlls/secur32/lsa.c +++ b/dlls/secur32/lsa.c @@ -153,7 +153,10 @@ NTSTATUS WINAPI LsaGetLogonSessionData(PLUID LogonId, PSECURITY_LOGON_SESSION_DATA* ppLogonSessionData) { FIXME("%p %p stub\n", LogonId, ppLogonSessionData);
- *ppLogonSessionData = NULL;
- // *ppLogonSessionData = NULL;
- SECURITY_LOGON_SESSION_DATA fake;
- fake.LogonTime.QuadPart = 44;
return STATUS_NOT_IMPLEMENTED;*ppLogonSessionData = &fake;
}
I have this error too. Related to popping login window failure under wine. Silly question: How do I "apply the stupid hack"? Seems like I should know but I don't and haven't found anything.