http://bugs.winehq.org/show_bug.cgi?id=59333 --- Comment #33 from Madalee <madalee@ohlmeyers.com> --- While we haven't seen the big memory leak with Warudo while running our reverted Proton-10.0-4, we did manage to run in to it while running Adalyn's debugger. This would suggest that either that code block isn't at fault, or we reverted it wrong. As we said, we don't really understand what's happening in the assembly so its possible we reverted it wrong. However, that entire __wine_unix_call_dispatcher function is identical to Proton8(which does not have the bug) in our version except for the following: Changed: ".globl " __ASM_NAME("__wine_unix_call_dispatcher_prolog_end") "\n" __ASM_NAME("__wine_unix_call_dispatcher_prolog_end") ":\n\t" To: __ASM_LOCAL_LABEL("__wine_unix_call_dispatcher_prolog_end") ":\n\t" Changed: "jnz .L__wine_syscall_dispatcher_return\n\t" To: jnz " __ASM_LOCAL_LABEL("__wine_syscall_dispatcher_return") "\n\t" We needed to make these changes as Proton10 has an asm clock at the end that references __wine_syscall_dispatcher_return as opposed to L__wine_syscall_dispatcher_return It kinda looks like these may be the same thing with different syntax, but we are just guessing here. -- 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.