[Bug 51465] EVE Online launcher crashes

WineHQ Bugzilla wine-bugs at winehq.org
Mon Jul 19 14:57:38 CDT 2021


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

--- Comment #14 from algebro at tuta.io ---
I just added a small hacky patch to cryptopp to manually load msvcrt.dll as
follows:

    hModule = GetModuleHandle("msvcrtd");
    if (!hModule) 
        hModule = GetModuleHandle("msvcrt");
    if (!hModule)
        hModule = LoadLibrary("msvcrt.dll");

After recompiling cryptopp.dll and replacing the one that ships with the EVE
Windows launcher, it works fine on Wine 6.12. So it looks like Zebediah was
spot on.

@Zebediah, should we do anything about this on the Wine side (like look at
linking against msvcrt), or just patch this upstream in cryptopp to have it
load the library if it's not present?

-- 
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