[Bug 46014] New: Estlcam crashes with System.OverflowException in button.resize()
https://bugs.winehq.org/show_bug.cgi?id=46014 Bug ID: 46014 Summary: Estlcam crashes with System.OverflowException in button.resize() Product: Wine Version: 3.18 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: -unknown Assignee: wine-bugs(a)winehq.org Reporter: j-p-t(a)gmx.net Distribution: --- Created attachment 62584 --> https://bugs.winehq.org/attachment.cgi?id=62584 stacktrace of 32 bit version This app https://www.estlcam.de/ simply crashes on startup. regardless of 32 or 64 bit version. stacktrace follows -- 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=46014 Louis Lenders <xerox.xerox2000x(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |xerox.xerox2000x(a)gmail.com Ever confirmed|0 |1 URL| |https://www.estlcam.de/ Keywords| |download Component|-unknown |mscoree Severity|minor |normal Summary|Estlcam crashes with |Estlcam crashes with |System.OverflowException in |System.OverflowException in |button.resize() |button.resize() using Mono --- Comment #1 from Louis Lenders <xerox.xerox2000x(a)gmail.com> --- confirming Try `` winetricks dotnet40``. then it starts fine for me sha1sum ~/Estlcam_32_11040.exe a359ac45b1bea781ac4e38daf03d017055d7370f /home/louis/Estlcam_32_11040.exe -- 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=46014 JPT <j-p-t(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |WONTFIX Status|NEW |RESOLVED --- Comment #2 from JPT <j-p-t(a)gmx.net> --- Thanks, the workaround given solves the problem. I hope it's OK when I set this to resolved/wontfix I will update the AppDB with the workaround. -- 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=46014 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Estlcam crashes with |Estlcam 11.x (.NET 4.x app) |System.OverflowException in |crashes on startup with |button.resize() using Mono |Wine-Mono CC| |focht(a)gmx.net Resolution|WONTFIX |--- Status|RESOLVED |REOPENED --- Comment #3 from Anastasius Focht <focht(a)gmx.net> --- Hello JPT, --- quote --- I hope it's OK when I set this to resolved/wontfix --- quote --- No, there is still a problem with Wine-Mono. Using native .NET Frameworks is certainly a solution but you should give Wine-Mono folks a chance to fix this on their side too, although they don't seem to have high priority on managing/investigating/fixing Mono related issues. I've removed the exception line from the summary line. There are multiple nested/cascading exceptions and the button.resize() one is certainly not the cause. Regards -- 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=46014 --- Comment #4 from Gijs Vermeulen <gijsvrm(a)gmail.com> --- Created attachment 70161 --> https://bugs.winehq.org/attachment.cgi?id=70161 output Still a problem with wine-6.10 & wine-mono 6.2.0. I did have to use version 11.0.42 of the program instead of 11.0.40 as it's the closest one I could find a download for. -- 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=46014 Gijs Vermeulen <gijsvrm(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEW URL|https://www.estlcam.de/ |https://web.archive.org/web | |/20210616085651if_/https:// | |estlcam.de/downloads/Estlca | |m_32_11042.exe --- Comment #5 from Gijs Vermeulen <gijsvrm(a)gmail.com> --- Adding the download. $ sha1sum Estlcam_32_11042.exe e4d2eaed225fef3ff516ab9cd1ff80b3f75145a0 Estlcam_32_11042.exe $ du -sh Estlcam_32_11042.exe 2.3M Estlcam_32_11042.exe -- 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=46014 --- Comment #6 from Esme Povirk <madewokherd(a)gmail.com> --- The exception is because mono's Conversion.Hex converts from ulong to long, which breaks if the value >= 2**63. After fixing that, I get a NullReferenceException which happens because WindowsFormsApplicationBase does not call the Startup event. -- 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=46014 --- Comment #7 from Esme Povirk <madewokherd(a)gmail.com> --- Fix pushed: https://github.com/madewokherd/wine-mono/commit/01ff9d99602e01860843e59b22f7... CI build pending. -- 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=46014 --- Comment #8 from Esme Povirk <madewokherd(a)gmail.com> --- CI build: https://github.com/madewokherd/wine-mono/actions/runs/1043034215 Even though it says "build failed", that's just because I forgot to add the new test to gitignore, the build is still there and can be downloaded. -- 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=46014 Esme Povirk <madewokherd(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |451a54bc7a77b8b816f28ad1c61 | |5745e650586ae Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #9 from Esme Povirk <madewokherd(a)gmail.com> --- Fixed in Wine Mono 6.3.0. -- 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=46014 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 6.14. -- 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=46014 Mehmet gelisin <mehmetgelisin(a)aol.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mehmetgelisin(a)aol.com --- Comment #11 from Mehmet gelisin <mehmetgelisin(a)aol.com> --- I completely removed the previous builds and followed those commands exactly in my last comment, i'll try the clean command http://www.compilatori.com/ next and see if the 64bit will build, might have something to do with ccache on my configure command. http://www.wearelondonmade.com/ Building with the patch only applied to wine32 seems to have worked, restarted the launcher again and it's working (launcher version 1920522). Three clients all launching and logging into the actual game to stations. http://www.jopspeech.com/ Not 100% sure why vanilla wine isn't building with that change on 64bit on my machine, i'll take more of a look at it later. Was just about to pull the wine PKGBUILD for arch and add to the patch files, looks like you got there first! http://joerg.li/ I completely removed the previous builds and followed those commands exactly in my last comment, i'll try the clean command next and see if the 64bit will build, might have something to do with ccache on my configure command. http://connstr.net/ Building with the patch only applied to wine32 seems to have worked, restarted the launcher again and it's working (launcher version 1920522). Three clients all launching and logging into the actual game to stations. http://embermanchester.uk/ Not 100% sure why vanilla wine isn't building with that change on 64bit on my machine, i'll take more of a look at it later.http://www.slipstone.co.uk/ Was just about to pull the wine PKGBUILD for arch and add to the patch files, looks like you got there first! http://www.logoarts.co.uk/ I completely removed the previous builds and followed those commands exactly in my last comment, i'll try the clean command next and see if the 64bit will build, might have something to do with ccache on my configure command. http://www.acpirateradio.co.uk/ Building with the patch only applied to wine32 seems to have worked, restarted the launcher again and it's working (launcher version 1920522). Three clients all launching and logging into the actual game to stations. https://waytowhatsnext.com/ Not 100% sure why vanilla wine isn't building with that change on 64bit on my machine, i'll take more of a look at it later. Was just about to pull the wine PKGBUILD for arch and add to the patch files, looks like you got there first! https://www.webb-dev.co.uk/ Building with the patch only applied to wine32 seems to have worked, restarted the launcher again and it's working (launcher version 1920522). Three clients all launching and logging into the actual game to stations. Not 100% sure why vanilla wine isn't building with that change on 64bit on my machine, i'll take more of a look at it later. http://www.iu-bloomington.com/ Was just about to pull the wine PKGBUILD for arch and add to the patch files, looks like you got there first! Building with the patch only applied to wine32 seems to have worked, restarted the launcher again and it's working (launcher version 1920522). Three clients all launching and logging into the actual game to stations. http://www-look-4.com/ Not 100% sure why vanilla wine isn't building with that change on 64bit on my machine, i'll take more of a look at it later. Was just about to pull the wine PKGBUILD for arch and add to the patch files, looks like you got there first! -- 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 (2)
-
wine-bugs@winehq.org -
WineHQ Bugzilla