[Bug 42586] New: Adobe Reader DC crashes on startup
https://bugs.winehq.org/show_bug.cgi?id=42586 Bug ID: 42586 Summary: Adobe Reader DC crashes on startup Product: Wine Version: 2.3 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs(a)winehq.org Reporter: fjfrackiewicz(a)gmail.com Distribution: --- Created attachment 57510 --> https://bugs.winehq.org/attachment.cgi?id=57510 Terminal output Wine 2.3 When attempting to run Adobe Reader DC, the application crashes on start when I attempt to run the application in a 32-bit Windows 7 prefix. Overrides needed: mspatcha -- 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=42586 --- Comment #1 from fjfrackiewicz(a)gmail.com --- Created attachment 57511 --> https://bugs.winehq.org/attachment.cgi?id=57511 Backtrace of the crash in Wine 2.3 -- 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=42586 fjfrackiewicz(a)gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, Installer URL| |https://ardownload2.adobe.c | |om/pub/adobe/reader/win/Acr | |obatDC/1502320070/AcroRdrDC | |1502320070_en_US.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=42586 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000(a)yahoo.co.uk --- Comment #2 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> --- Created attachment 57513 --> https://bugs.winehq.org/attachment.cgi?id=57513 stub for GetCurrentPackageFullName Essentially this is a duplicate of https://bugs.winehq.org/show_bug.cgi?id=42014 That bug is fixed in Staging (or you could try hack from that patch) After working around that bug it crashes for me in unimplemented function GetCurrentPackageFullName With the attached patch (stub for that function) it starts fine for me. -- 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=42586 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #3 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> --- Forgot to say: The point where the call to unimplemented GetCurrentPackageFullName is called is only reached in wine-staging. In vanilla wine it runs (after working around bug 42014) into: fixme:file:SetFileCompletionNotificationModes 0x200 1 - stub wine: Unhandled exception 0x80000003 in thread 76 at address 0x100d7889 (thread 0076), starting debugger... So it also needs the more mature SetFileCompletionNotificationModes from Staging -- 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=42586 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |42014 -- 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=42586 Sebastian Lackner <sebastian(a)fds-team.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Staged patchset| |https://github.com/wine-com | |pholio/wine-staging/tree/ma | |ster/patches/kernel32-GetCu | |rrentPackageFamilyName CC| |dmitry(a)baikal.ru, | |erich.e.hoover(a)wine-staging | |.com, michael(a)fds-team.de, | |sebastian(a)fds-team.de Status|NEW |STAGED -- 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=42586 --- Comment #4 from fjfrackiewicz(a)gmail.com --- (In reply to Louis Lenders from comment #3)
Forgot to say:
The point where the call to unimplemented GetCurrentPackageFullName is called is only reached in wine-staging.
In vanilla wine it runs (after working around bug 42014) into:
fixme:file:SetFileCompletionNotificationModes 0x200 1 - stub wine: Unhandled exception 0x80000003 in thread 76 at address 0x100d7889 (thread 0076), starting debugger...
So it also needs the more mature SetFileCompletionNotificationModes from Staging
GetCurrentPackageFullName is now a sub in Wine-devel, if I am reading this commit correctly: https://source.winehq.org/git/wine.git/commit/d2b98081fd107219bdadf284d72113... So the next step would be the SetFileCompletionNotificationModes stub? -- 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=42586 Sebastian Lackner <sebastian(a)fds-team.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |3f50319ec384730360d16dd79d7 | |03adafaa953fc Summary|Adobe Reader DC crashes on |Adobe Reader DC crashes on |startup |startup (needs | |GetCurrentPackageFullName | |stub) Resolution|--- |FIXED Status|STAGED |RESOLVED --- Comment #5 from Sebastian Lackner <sebastian(a)fds-team.de> --- (In reply to fjfrackiewicz from comment #4)
GetCurrentPackageFullName is now a sub in Wine-devel, if I am reading this commit correctly:
https://source.winehq.org/git/wine.git/commit/ d2b98081fd107219bdadf284d7211303fdf86528
This is a different commit, but yes, the function has been added.
So the next step would be the SetFileCompletionNotificationModes stub?
Wine already has a stub for it, it needs a real implementation. However, those remaining issues are already discussed in different bugs (bug 42014, bug 38960). -- 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=42586 --- Comment #6 from fjfrackiewicz(a)gmail.com --- (In reply to Sebastian Lackner from comment #5)
(In reply to fjfrackiewicz from comment #4)
GetCurrentPackageFullName is now a sub in Wine-devel, if I am reading this commit correctly:
https://source.winehq.org/git/wine.git/commit/ d2b98081fd107219bdadf284d7211303fdf86528
This is a different commit, but yes, the function has been added.
So the next step would be the SetFileCompletionNotificationModes stub?
Wine already has a stub for it, it needs a real implementation. However, those remaining issues are already discussed in different bugs (bug 42014, bug 38960).
Whoops I must've misread the commit, sorry and thanks for the correction :) -- 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=42586 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #7 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 2.4. -- 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=42586 Bug 42586 depends on bug 42014, which changed state. Bug 42014 Summary: Multiple apps crash on start due to missing support for LABEL_SECURITY_INFORMATION(affects BOSE SoundTouch, Spotify, Paltalk) https://bugs.winehq.org/show_bug.cgi?id=42014 What |Removed |Added ---------------------------------------------------------------------------- Status|STAGED |RESOLVED Resolution|--- |FIXED -- 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=42586 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |focht(a)gmx.net URL|https://ardownload2.adobe.c |https://web.archive.org/web |om/pub/adobe/reader/win/Acr |/20210705104140/https://ard |obatDC/1502320070/AcroRdrDC |ownload2.adobe.com/pub/adob |1502320070_en_US.exe |e/reader/win/AcrobatDC/1502 | |320070/AcroRdrDC1502320070_ | |en_US.exe Component|-unknown |kernel32 -- 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