http://bugs.winehq.org/show_bug.cgi?id=50824 brandow <brandowlucas@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brandowlucas@gmail.com --- Comment #6 from brandow <brandowlucas@gmail.com> --- (In reply to Andrew Nguyen from comment #4)
Does the issue persist with the latest version of Wine? The particular crash you are observing may not be an issue anymore.
Yes, the installer usually fails during the unpacking phase with a return code -1 (Archive data corrupted). This is consistently triggered by repacks utilizing heavy Unarc compression (LZMA2). Observed Symptoms: GUI Error: ISDone.dll popup reporting "archive data corrupted (decompression fails)". Terminal Logs: High-frequency spam of memory allocation failures: err:virtual:allocate_virtual_memory out of memory for allocation, base (nil) size [hex_value] From what I gathered in dlls/ntdll/unix/virtual.c: The decompression process exhausts the 32-bit virtual address space (fragmentation or hitting the ~2-3 GB ceiling), causing NtAllocateVirtualMemory to return STATUS_NO_MEMORY. Unarc.dll's worker thread fails to allocate its decompression buffer and crashes, misreporting this as a corrupted archive rather than an out-of-memory condition. This issue is reproducible using wine git master both with new or old WOW64. -- 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.