https://bugs.winehq.org/show_bug.cgi?id=38153
Kurt kurtjaeke@gmx.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |kurtjaeke@gmx.de
--- Comment #3 from Kurt kurtjaeke@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@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.