https://bugs.winehq.org/show_bug.cgi?id=53719 --- Comment #1 from Erich E. Hoover <erich.e.hoover(a)gmail.com> --- (In reply to Béla Gyebrószki from comment #0)
... The game crashes at various stages while loading the main menu. Can be reproduced with the demo version. ... See also bug #53683. ...
Oh my goodness, thank you - I have been struggling to reproduce what's going on in Bug #53683 and this app did it immediately. It looks like the issue is a leaked file descriptor. Please go to the end of lookup_unix_name (~4360) and change: === fchdir( old_cwd ); free( name_buf ); === to: === fchdir( old_cwd ); close ( old_cwd ); free( name_buf ); === and let me know if that fixes the problem for you. -- 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.