http://bugs.winehq.org/show_bug.cgi?id=7336
------- Additional Comments From vit.hrachovy(a)sandbox.cz 2007-18-02 16:20 -------
compoennt should be changed to wine multimedia, as error trace suggests
(fixme:winmm:MMDRV_Exit Closing while ll-driver open)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7395
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2007-18-02 16:11 -------
It does that on Windows too, if you not running BPP it wants
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7480
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |truiken(a)gmail.com
Keywords| |download, Installer,
| |regression
------- Additional Comments From vitaliy(a)kievinfo.com 2007-18-02 16:07 -------
Adding author of the patch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7477
------- Additional Comments From focht(a)gmx.net 2007-18-02 16:03 -------
Hello,
-- quote --
Looks like a duplicate of bug 6591. Can you test the suggested workarounds?
-- quote ---
Bug #6591 is about native msc runtime v8 and manifest issue.
The app comes with native versions of the runtime libraries (install dir)
--- snip ---
1076 -rw-rw-r-- 1 focht focht 1093632 Sep 23 2005 mfc80.dll
8 -rw-rw-r-- 1 focht focht 522 Jul 21 2006 Microsoft.VC80.CRT.manifest
8 -rw-rw-r-- 1 focht focht 550 Sep 23 2005 Microsoft.VC80.MFC.manifest
476 -rw-rw-r-- 1 focht focht 479232 Jul 21 2006 msvcm80.dll
544 -rw-rw-r-- 1 focht focht 548864 Jul 21 2006 msvcp80.dll
620 -rw-rw-r-- 1 focht focht 626688 Jul 21 2006 msvcr80.dll
--- snip ---
I think the crash is clearly SDL api related as pointed out by my disassembly
analysis.
After exception is thrown a process "UplinkSupport.exe" is launched which
collects some error info (app crash dump and the like)
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7480
Summary: Regression with Word viewer installer
Product: Wine
Version: 0.9.30.
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: myasar(a)free.fr
I've found an old regression with MS Word viewer 2003 installer.
(you can get it from:
http://www.microsoft.com/downloads/details.aspx?FamilyID=95e24c87-8732-48d5…).
With Wine version 0.9.16 the installation is almost OK.
The files are copied, the installer displays an error after installation but
WordViewer is usable.
Since Wine v0.9.17 (and all version until 0.9.31) the installation stops before
copying any files.
With git bisect, I have found that the following patch has caused the regression :
commit 7c35db000b26852fc2bf4a7a7e349953f60d183f
msiexec: Use CommandLineToArgvW instead of process_args to reduce code duplication.
The patch replaces the function process_args() by CommandLineToArgvW() in
msiexec.c, the result is that the decodification of the command line is different.
(Note that I have pasted here the output of multiple runs, each time the name of
the temporary file is different)
Original command line :
-----------------------
\"c:\\windows\\system32\\msiexec.exe\" /I
C:\\windows\\temp\\IXP044.TMP\\WORDVIEW.MSI CDCACHE=\"2\"
LAUNCHEDFROMSETUP=\"1\" SETUPEXEPATH=\"C:\\windows\\temp\\IXP044.TMP\\\"
SETUPEXENAME=\"SETUP.EXE\" /lpiwaeo \"C:\\windows\\temp\\Microsoft Office Word
Viewer 2003 Setup(0071)_Task(0001).txt\" CDCACHE=\"0\"
DWSETUPLOGFILE=\"C:\\windows\\temp\\Microsoft Office Word Viewer 2003
Setup(0071).txt\" DWSETUPLOGFILE=\"C:\\windows\\temp\\Microsoft Office Word
Viewer 2003 Setup(0071).txt\" DWMSILOGFILE=\"C:\\windows\\temp\\Microsoft Office
Word Viewer 2003 Setup(0071)_Task(0001).txt\"
-----------------------
argv returned by process_args()
------------------------------
argc = 12
argv[0]=L"c:\\windows\\system32\\msiexec.exe"
argv[1]=L"/I"
argv[2]=L"C:\\windows\\temp\\IXP034.TMP\\WORDVIEW.MSI"
argv[3]=L"CDCACHE=2"
argv[4]=L"LAUNCHEDFROMSETUP=1"
argv[5]=L"SETUPEXEPATH=C:\\windows\\temp\\IXP034.TMP\\"
argv[6]=L"SETUPEXENAME=SETUP.EXE"
argv[7]=L"/lpiwaeo"
argv[8]=L"C:\\windows\\temp\\Microsoft Office Word Viewer 2003
Setup(0054)_Task(0001).txt"
argv[9]=L"CDCACHE=0"
argv[10]=L"DWSETUPLOGFILE=C:\\windows\\temp\\Microsoft Office Word Viewer 2003
Setup(0054).txt"
argv[11]=L"DWMSILOGFILE=C:\\windows\\temp\\Microsoft Office Word Viewer 2003
Setup(0054)_Task(0001).txt"
------------------------------
argv returned by CommandLineToArgvW ()
------------------------------
argc = 21
argv[0]=L"c:\\windows\\system32\\msiexec.exe"
argv[1]=L"/I"
argv[2]=L"C:\\windows\\temp\\IXP034.TMP\\WORDVIEW.MSI"
argv[3]=L"CDCACHE=2"
argv[4]=L"LAUNCHEDFROMSETUP=1"
argv[5]=L"SETUPEXEPATH=C:\\windows\\temp\\IXP034.TMP\" SETUPEXENAME=SETUP.EXE
/lpiwaeov C:\\windows\\temp\\Microsoft"
argv[6]=L"Office"
argv[7]=L"Word"
argv[8]=L"Viewer"
argv[9]=L"2003"
argv[10]=L"Setup(0053)_Task(0001).txt LOGVERBOSE=1 CDCACHE=0
DWSETUPLOGFILE=C:\\windows\\temp\\Microsoft"
argv[11]=L"Office"
argv[12]=L"Word"
argv[13]=L"Viewer"
argv[14]=L"2003"
argv[15]=L"Setup(0053).txt DWMSILOGFILE=C:\\windows\\temp\\Microsoft"
argv[16]=L"Office"
argv[17]=L"Word"
argv[18]=L"Viewer"
argv[19]=L"2003"
argv[20]=L"Setup(0053)_Task(0001).txt"
------------------------------
Obviously the result of CommandLineToArgvW is wrong.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7377
------- Additional Comments From djmanas(a)centrum.cz 2007-18-02 15:55 -------
I had applied the Get Tantra working patch on gentoo, wine 0.9.30 and it works,
but have another issue in the game, I will start new bug report ....
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7377
------- Additional Comments From djmanas(a)centrum.cz 2007-18-02 15:54 -------
Created an attachment (id=5010)
--> (http://bugs.winehq.org/attachment.cgi?id=5010&action=view)
+wininettrace
This is +wininet trace before gettantrawork patch (only taken from console when
tried to log into the game, hadnt found howto redirect the log from console to
file ;(()
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7336
vit.hrachovy(a)sandbox.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |vit.hrachovy(a)sandbox.cz
------- Additional Comments From vit.hrachovy(a)sandbox.cz 2007-18-02 15:50 -------
*** Bug 7479 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7479
vit.hrachovy(a)sandbox.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vit.hrachovy(a)sandbox.cz 2007-18-02 15:50 -------
already reported as 7336
*** This bug has been marked as a duplicate of 7336 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.