[Bug 38153] New: Don't work Radmin viewer 3.5
https://bugs.winehq.org/show_bug.cgi?id=38153 Bug ID: 38153 Summary: Don't work Radmin viewer 3.5 Product: Wine Version: 1.7.37 Hardware: x86-64 OS: Mac OS X Status: UNCONFIRMED Severity: critical Priority: P2 Component: -unknown Assignee: wine-bugs(a)winehq.org Reporter: 7309397(a)live.ru Os X Yosemmite 10.10.2 wine-devel @1.7.37_0 the main window the application is started. Attempt will be connected outputs the login/password and after input the appendix is closed ---Cut--- fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot fixme:toolhelp:Heap32ListFirst : stub err:tooltips:TOOLTIPS_WindowProc unknown msg 08d1 wp=00000000 lp=00000000 macdrv: Can't store handle for event queue fd ---Cut--- using the version wine-devel @1.7.30_0 everything works! --Cut--- err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:iphlpapi:NotifyAddrChange (Handle 0xecf540, overlapped 0xecf54c): stub fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot fixme:toolhelp:Heap32ListFirst : stub err:tooltips:TOOLTIPS_WindowProc unknown msg 08d1 wp=00000000 lp=00000000 ---Cut--- -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Nikolay Sivov <bunglehead(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |normal -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 --- Comment #1 from Austin English <austinenglish(a)gmail.com> --- (In reply to mijgunz from comment #0)
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
you need to install winbind. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Ken Thomases <ken(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression --- Comment #2 from Ken Thomases <ken(a)codeweavers.com> --- (In reply to Austin English from comment #1)
(In reply to mijgunz from comment #0)
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
you need to install winbind.
Well, that was from a run which the reporter said works (Wine 1.7.30). mijgunz, please run a regression test to determine what broke things between 1.7.30 and 1.7.37. http://wiki.winehq.org/RegressionTesting http://wiki.winehq.org/MacOSX/Building -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Kurt <kurtjaeke(a)gmx.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kurtjaeke(a)gmx.de --- Comment #3 from Kurt <kurtjaeke(a)gmx.de> --- I encountered the same issue with the EA Origin client updater. I bisected to: 3be5c16b4da8ba07859081007533a744b1ba0ea8 is the first bad commit commit 3be5c16b4da8ba07859081007533a744b1ba0ea8 Author: Piotr Caban <piotr(a)codeweavers.com> Date: Mon Nov 10 13:46:18 2014 +0100 user32: Move IME window procedure to user32. I inserted a debug printf as follows: diff --git a/dlls/winemac.drv/macdrv_main.c b/dlls/winemac.drv/macdrv_main.c index 38352a8..a297848 100644 --- a/dlls/winemac.drv/macdrv_main.c +++ b/dlls/winemac.drv/macdrv_main.c @@ -257,6 +257,8 @@ static void set_queue_display_fd(int fd) ret = wine_server_call(req); } SERVER_END_REQ; + + printf("ret: %d, %X\n",ret,ret); if (ret) { MESSAGE("macdrv: Can't store handle for event queue fd\n"); This yields 0 before the incriminated commmit, and ret: -1073741790, C0000022 after. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 jre.winesim(a)gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jre.winesim(a)gmail.com -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Kurt <kurtjaeke(a)gmx.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ken(a)codeweavers.com --- Comment #4 from Kurt <kurtjaeke(a)gmx.de> --- Could you please give some hints on how to debug this, i.e., what to add to WINEDEBUG? Thanks! -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 --- Comment #5 from Ken Thomases <ken(a)codeweavers.com> --- (In reply to Kurt from comment #4)
Could you please give some hints on how to debug this, i.e., what to add to WINEDEBUG?
Well, you could try forcing a crash instead of the ExitProcess() call, to get a backtrace. For example, put this above it: *(char*)1 = 0; Maybe also a +server log would make clear why the set_queue_fd server call is returning STATUS_ACCESS_DENIED (0xC0000022). -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Ken Sharp <imwellcushtymelike(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |piotr.caban(a)gmail.com Component|-unknown |user32 Regression SHA1| |3be5c16b4da8ba0785908100753 | |3a744b1ba0ea8 -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Piotr Caban <piotr.caban(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1 --- Comment #6 from Piotr Caban <piotr.caban(a)gmail.com> --- This bug is caused by order of DLL_THREAD_DETACH events. When thread finishes it unloads winemac.drv, then user32.dll and next imm32.dll. While winemac.drv is detached it destroys the thread data. Later when imm32 is detached it calls GetKeyboardLayout that causes the macdrv error. I don't know yet how to fix it. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 --- Comment #7 from Piotr Caban <piotr.caban(a)gmail.com> --- It should be working now, please retest. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 --- Comment #8 from Kurt <kurtjaeke(a)gmx.de> --- Works for me with today's master branch (cfbc37c699e3b3b27df4c566014e6dde9c7194b8), testing EA Origin's update client. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Piotr Caban <piotr.caban(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |9e099828470eb3c74302260a7e1 | |aa004ac6c7583 Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #9 from Piotr Caban <piotr.caban(a)gmail.com> --- Marking as fixed. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=38153 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #10 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 1.7.50. -- 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.
participants (1)
-
wine-bugs@winehq.org