[Bug 46023] Cisco Packet Tracer 7.2 (kind of) crashes on startup and when reading saved files from disk

wine-bugs at winehq.org wine-bugs at winehq.org
Sat Oct 20 02:35:14 CDT 2018


https://bugs.winehq.org/show_bug.cgi?id=46023

Louis Lenders <xerox.xerox2000x at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://bugs.winehq.org/sho
                   |                            |w_bug.cgi?id=45980
                 CC|                            |xerox.xerox2000x at gmail.com

--- Comment #1 from Louis Lenders <xerox.xerox2000x at gmail.com> ---
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;
+       *ppLogonSessionData = &fake;
     return STATUS_NOT_IMPLEMENTED;
 }

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list