https://bugs.winehq.org/show_bug.cgi?id=39708
Bug ID: 39708 Summary: Content does not display in Rust Experimental server Product: Wine Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: kernel32 Assignee: wine-bugs@winehq.org Reporter: nikita.hldm@gmail.com Distribution: ---
Created attachment 52950 --> https://bugs.winehq.org/attachment.cgi?id=52950 Wine log
Contents of the console after starting: Mono path[0] = 'Z:/home/servers/rust/RustDedicated_ Data/Managed' Mono path[1] = 'Z:/home/servers/rust/RustDedicated_ Data/Mono' Mono config path = 'Z:/home/servers/rust/RustDedica ted_Data/Mono/etc'
And nothing more.
I fixed this problem with the Rust Experimental. However, this solution is not too good.
In console.c in CloseConsoleHandle() i added return TRUE; after {
BOOL WINAPI CloseConsoleHandle(HANDLE handle) { return TRUE; ...
I think the problem is related with the functions - AttachConsole(), FreeConsole().
https://bugs.winehq.org/show_bug.cgi?id=39708
Nikita nikita.hldm@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Content does not display in |Console content does not |Rust Experimental server |display in Rust | |Experimental server
https://bugs.winehq.org/show_bug.cgi?id=39708
Nikita nikita.hldm@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |1.8-rc2
https://bugs.winehq.org/show_bug.cgi?id=39708
Sebastian Lackner sebastian@fds-team.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |sebastian@fds-team.de
--- Comment #1 from Sebastian Lackner sebastian@fds-team.de --- Just a wild guess, but the issue sounds similar to https://github.com/wine-compholio/wine-staging/tree/master/patches/msvcrt-St.... Could you try if this patchset also helps?
https://bugs.winehq.org/show_bug.cgi?id=39708
--- Comment #2 from Nikita nikita.hldm@gmail.com --- (In reply to Sebastian Lackner from comment #1)
Just a wild guess, but the issue sounds similar to https://github.com/wine-compholio/wine-staging/tree/master/patches/msvcrt- StdHandle_RefCount. Could you try if this patchset also helps?
These patches do not help.