https://bugs.winehq.org/show_bug.cgi?id=43507 --- Comment #4 from Bernhard Übelacker <bernhardu(a)mailbox.org> --- (In reply to Fabian Maurer from comment #3)
EDIT: Crashes when using wine-8.9.
Hello, thanks for the clarification, procexp64.exe version 16.21 shows it. There exists another bug report with more info about the same issue: bug #45926. Just uncommenting I_QueryTagInformation in the spec file is not enough, but the crash can be avoided by this modification: diff --git a/dlls/advapi32/advapi.c b/dlls/advapi32/advapi.c + +DWORD WINAPI I_QueryTagInformation(const WCHAR *machine, int level, void* info) +{ + FIXME("(%s, %d, %p) stub\n", debugstr_w(machine), level, info); + return ERROR_CALL_NOT_IMPLEMENTED; +} diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec -# @ stub I_QueryTagInformation +@ stdcall I_QueryTagInformation(ptr long ptr) -- 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.