http://bugs.winehq.org/show_bug.cgi?id=22649
Summary: CDBurnerXP 4.3.x crashes when trying to erase a DVD-RW
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://cdburnerxp.se/download?more-options
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=27861)
--> (http://bugs.winehq.org/attachment.cgi?id=27861)
Crash log
After choosing "erase disc" in the main menu and then clicking the erase button
(while a DVD-RW disc is inserted in a drive the program can detect), the
program produces an error dialog:
Erasing the disc failed for the following reason: Exception from HRESULT:
0x8001010E (RPC_E_WRONG_THREAD)
Clicking OK to this message results in the MS error report tool popping up,
followed by the Wine crash dialog.
Note: this program needs dotnet20, and it needs the workaround from bug 18012,
comment 2 to be able to detect drives in this section.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=14817
Summary: Msi property names passed on the command line need to be
interpreted as uppercase (Corel Draw X3 installer)
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://download.chip.eu/en/CorelDraw-Graphics-Suite-X3-
13.0.0.739_74294.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
while solving bug 10368 I came across another one before hitting bug 2547
Note: To get to this bug one needs my private heap patch for bug 10368 so just
believe it for now until AJ provides a fix ;-)
There is a custom action "Set_AKPARAMS_CGS" which lets the installer fail:
--- snip ---
002d:trace:msi:ACTION_CustomAction Handling custom action L"Set_AKPARAMS_CGS"
(33 L"AKPARAMS"
L"[PCUPath]|[PCUNLRFilename]|[LangPath]|[PCUDllFilename]|[regkey]|[DTAFilename]|[PIDprefix]|[LANG]")
..
--- snip ---
There are 8 properties fetched to build the string:
--- snip ---
002d:trace:msi:MSI_GetPropertyW returning
L"C:\\windows\\temp\\Corel\\6926A426-654D-11DD-879C-000AE4C88BC2\\Programs\\"
for property L"PCUPath"
..
002d:trace:msi:MSI_GetPropertyW returning L"DRPCUNLR.dll" for property
L"PCUNLRFilename"
..
002d:trace:msi:MSI_GetPropertyW returning
L"C:\\windows\\temp\\Corel\\6926A426-654D-11DD-879C-000AE4C88BC2\\Languages\\DE\\Programs\\"
for property L"LangPath"
..
002d:trace:msi:MSI_GetPropertyW property L"PCUDllFilename" not found
..
002d:trace:msi:MSI_GetPropertyW returning
L"SOFTWARE\\Corel\\TempKey2B9006B6\\6926A426-654D-11DD-879C-000AE4C88BC2" for
property L"regkey"
..
002d:trace:msi:MSI_GetPropertyW returning L"DR13" for property L"DTAFilename"
..
002d:trace:msi:MSI_GetPropertyW returning L"DR13" for property L"PIDprefix"
..
002d:trace:msi:MSI_GetPropertyW returning L"EN" for property L"LANG"
..
--- snip ---
One property "PCUDllFilename" is not found.
The properties are passed on command line:
--- snip ---
002d:Call msi.MsiInstallProductA(00a00b40
"C:\\windows\\temp\\CorelPreInstall.msi",00a00be0 "ACTIONTODO=\"AcquireKey\"
MAIN_INSTALL_DLG_TITLE=\"Setup Initialization\"
SERIALNUMBER=\"DR13WTX-9999998-YSP\" USERNAME=\"\" PCUSOURCEID=\"100001\"
PRODUCT_REGKEY=\"CorelDRAW\\13.0\" LANG=\"EN\" PCU_SUBFOLDER=\"Programs\\\"
PCUNLRFILENAME=\"DRPCUNLR.dll\"
PCU_LANG_SUBFOLDER=\"Languages\\DE\\Programs\\"...) ret=1000372b
--- snip ---
Debug/relay truncated it, here is the full command line (formatted one property
per line):
--- snip ---
ACTIONTODO="AcquireKey"
MAIN_INSTALL_DLG_TITLE="Setup Initialization"
SERIALNUMBER="DR13WTX-9999998-YSP"
USERNAME=""
PCUSOURCEID="100001"
PRODUCT_REGKEY="CorelDRAW\13.0"
LANG="EN"
PCU_SUBFOLDER="Programs\"
PCUNLRFILENAME="DRPCUNLR.dll"
PCU_LANG_SUBFOLDER="Languages\DE\Programs\"
PCU_LANG_RELATIVE_PATH="..\Languages\DE\Programs"
PCUDllFilename="PCUDataIntl.dll"
PIDPREFIX="DR13"
DTAFILENAME="DR13"
PCUURLLANG="DE"
--- snip ---
All property names are hard coded literals in this brain damaged installer and
"PCUDllFilename" was the only one not passed as uppercase.
Probably not intended but completely valid.
Next, these properties are set within msi_parse_command_line().
Because wine msi takes the property names as case sensitive, the property
"PCUDllFilename" is set with value "PCUDataIntl.dll" (and not
"PCUDLLFILENAME").
A bit later, a custom action for each property maps the property names again to
its case-dependant representation:
--- snip ---
002d:trace:msi:ACTION_CustomAction Handling custom action L"Set_PCUDllFilename"
(33 L"PCUDllFilename" L"[PCUDLLFILENAME]")
..
002d:trace:msi:MSI_FormatRecordW (L"[PCUDLLFILENAME]")
..
002d:trace:msi:MSI_DatabaseOpenViewW L"SELECT `Value` FROM `_Property` WHERE
`_Property`='PCUDLLFILENAME'" 0x7ed3cf9c
..
002d:trace:msi:MSI_GetPropertyW property L"PCUDLLFILENAME" not found
--- snip ---
Because "PCUDLLFILENAME" wasn't found due to msi command line bug,
"PCUDllFilename" will be overwritten with empty string, leading to later
failure.
My fix was to convert all property passed to msi_parse_command_line() to
uppercase.
This lets the installer proceed further - only to run into bug 2547
MSDN info here: http://msdn.microsoft.com/en-us/library/aa367988.aspx
--- quote ---
..
Only public properties can be modified using the command line. All property
names on the command line are interpreted as uppercase but the value retains
case sensitivity. If you enter MyProperty at a command line, the installer
overrides the value of MYPROPERTY and not the value of MyProperty in the
Property table.
--- quote ---
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=10368
Summary: Corel Draw X3 Won't Install
Product: Wine
Version: 0.9.48.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=9041)
--> (http://bugs.winehq.org/attachment.cgi?id=9041)
Log of the error
The installation is failing when the second stage start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27199
Summary: MS .Net Framework 1.x Service Pack installers crash in
InstallFiles action (cabinet stream handling)
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
probably a regression, I've noticed this some time ago but forgot about filing
a bug for it until I saw a forum post.
http://forum.winehq.org/viewtopic.php?t=12224&start=2
AFAIK affects various .NET 1.x SPx installers (1.0 SP3, 1.1 SP1, ...)
--- snip ---
$ wine ./NDP1.1sp1-KB867460-X86.exe
fixme:sync:CreateMemoryResourceNotification (0) stub
fixme:shell:URL_ParseUrl failed to parse L"mscorlib"
fixme:shell:URL_ParseUrl failed to parse L"PatchExec"
fixme:shell:URL_ParseUrl failed to parse L"Microsoft.Cabinet.MiniExtract"
...
fixme:msi:msi_parse_patch_summary patch obsoletes
L"{02D68AF2-1DCD-42E2-8E32-54314782DA29}{323E5670-5DA7-4A1E-85F0-8FA12EFE9EC8}{FA96891D-DADE-40A5-B54C-61E945F88103}{2376C7F6-3282-4CBE-BB2E-38882354A844}{3D3DEE62-32F2-4AB3-9565-B344AD757AFD}{297E6479-2055-4B59-99C8-D31FF5FCADAF}{4291D65D-056C-4B77-82C6-D3C6A320FB4D}{DEFE4CC2-D4FF-4BE5-BCE3-7E9B7E39FC"...
fixme:msi:MsiGetMode no support for administrative installs
fixme:msi:ACTION_CustomAction Deferring rollback only action
wine: Unhandled page fault on read access to 0x00000000 at address 0x6839d034
(thread 0027), starting debugger...
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x6839d034).
...
Backtrace:
=>0 0x6839d034 cabinet_seek_stream+0x29(hf=0, dist=0, seektype=0x1)
[/opt/projects/wine/wine-git/dlls/msi/media.c:280] in msi (0x0033f008)
1 0x68c4c8eb FDI_getoffset+0x23(fdi=0x6837b8, hf=0)
[/opt/projects/wine/wine-git/dlls/cabinet/fdi.c:466] in cabinet (0x0033f028)
2 0x68c4cc2f FDI_read_entries+0xdc(fdi=0x6837b8, hf=0, pfdici=0x33f194,
pmii=0x69b49c) [/opt/projects/wine/wine-git/dlls/cabinet/fdi.c:575] in cabinet
(0x0033f108)
3 0x68c54048 FDICopy+0x47b(hfdi=0x6837b8, pszCabinet="<STREAM>",
pszCabPath=0x0(nil), flags=0, pfnfdin=0x6839dd73, pfnfdid=(nil),
pvUser=0x33f440) [/opt/projects/wine/wine-git/dlls/cabinet/fdi.c:2535] in
cabinet (0x0033f388)
4 0x6839e216 extract_cabinet_stream+0x184(package=0x147878, mi=0x683868,
data=0x33f440) [/opt/projects/wine/wine-git/dlls/msi/media.c:632] in msi
(0x0033f3f8)
5 0x6839e2bb msi_cabextract+0x2d(package=0x147878, mi=0x683868,
data=0x33f440) [/opt/projects/wine/wine-git/dlls/msi/media.c:649] in msi
(0x0033f418)
6 0x6838ffcf ACTION_InstallFiles+0x250(package=0x147878)
[/opt/projects/wine/wine-git/dlls/msi/files.c:356] in msi (0x0033f4a8)
7 0x68366b3d ACTION_HandleStandardAction+0x99(package=0x147878,
action="InstallFiles", rc=0x33f52c)
[/opt/projects/wine/wine-git/dlls/msi/action.c:8023] in msi (0x0033f4e8)
8 0x68366dad ACTION_PerformUIAction+0x90(package=0x147878,
action="InstallFiles", script=0xffffffff)
[/opt/projects/wine/wine-git/dlls/msi/action.c:8067] in msi (0x0033f538)
--- snip ---
Prerequisite: bash winetricks -q dotnet11
$ sha1sum NDP1.1sp1-KB867460-X86.exe
74a5b25d65a70b8ecd6a9c301a0aea10d8483a23 NDP1.1sp1-KB867460-X86.exe
$ wine --version
wine-1.3.20-94-geb4b262
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=25430
Summary: Internet Explorer 4 can't load the WineHQ forum
without native urlmon
Product: Wine
Version: 1.3.8
Platform: x86-64
URL: http://www.oldversion.com/download/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=32369)
--> (http://bugs.winehq.org/attachment.cgi?id=32369)
Standard output
If IE4 is installed using the procedure described at
http://appdb.winehq.org/objectManager.php?sClass=version&iId=2743&iTestingI…
, but with urlmon omitted from step 2 (native overrides), it loads only the
background image for the WineHQ forums. After loading the background, it
produces an error message and stops:
Internet Explorer could not open the Internet site http://forum.winehq.org/.
Could not complete the operation due to error 80004002.
After restoring the urlmon override, the forum can be fully loaded.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=29842
Bug #: 29842
Summary: IE4 crashes on showing certificate authorities, needs
wininet.dll.ParseX509EncodedCertificateForListBoxEntry
Product: Wine
Version: 1.4-rc2
Platform: x86-64
URL: http://www.oldversion.com/common/uploaded_files/softwa
res/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Crashes with:
wine: Call from 0x7b83bdc2 to unimplemented function
wininet.dll.ParseX509EncodedCertificateForListBoxEntry, aborting
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x102092e0
winetricks wininet is a workaround.
Steps to reproduce:
1. Change the reported Windows version to NT 4.0. (You may also want to remove
the Z: drive, to avoid a scan of the file system)
2. wine iexplore -unregserver
3. Remove inetcpl.cpl and schannel.dll from system32
4. Run the unpacker and installer. After reboot, close the program manager
windows that pop up as well as any error dialogs.
5. wine control inetcpl.cpl
6. Go to the content tab and click the "authorities" button
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=29843
Bug #: 29843
Summary: IE4 crashes on resetting profile sharing, needs
shdocvw.dll.ResetProfileSharing
Product: Wine
Version: 1.4-rc2
Platform: x86-64
URL: http://www.oldversion.com/common/uploaded_files/softwa
res/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Crashes with:
wine: Call from 0x7b83bdc2 to unimplemented function
shdocvw.dll.ResetProfileSharing, aborting
err:seh:raise_exception Unhandled exception code c00000fd flags 0 addr
0xf744863c
WINEDLLOVERRIDES=shdocvw=n is a workaround.
Steps to reproduce:
1. Change the reported Windows version to NT 4.0. (You may also want to remove
the Z: drive, to avoid a scan of the file system)
2. wine iexplore -unregserver
3. Remove inetcpl.cpl and schannel.dll from system32
4. Run the unpacker and installer. After reboot, close the program manager
windows that pop up as well as any error dialogs.
5. wine control inetcpl.cpl
6. Go to the content tab and click the "reset sharing" button
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=29718
Bug #: 29718
Summary: IE4 setup wants wininet.dll.LoadUrlCacheContent
Product: Wine
Version: 1.3.37
Platform: x86-64
URL: http://www.oldversion.com/common/uploaded_files/softwa
res/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
If the Internet Explorer 4 installer is run without any DLL overrides or
workarounds for earlier bugs, a process named LOADWC.EXE eventually crashes
after rebooting. Terminal output shows:
wine: Unimplemented function wininet.dll.LoadUrlCacheContent called at address
0x7b83bdc2 (thread 0024), starting debugger...
The workaround for bug 25359 also prevents this function from being called
(remove C:\windows\system32\schannel.dll before installing).
Steps to reproduce:
1. Change the reported Windows version to NT 4.0. (You may also want to remove
the Z: drive, to avoid a scan of the file system)
2. wine iexplore -unregserver
3. Run the unpacker and installer. Ignore a crash and warning about failure to
install some components (bug 25359 & bug 25502).
4. After reboot, close the program manager windows that pop up as well as any
error dialogs. Note that there seems to be a pause before this crash occurs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=29717
Bug #: 29717
Summary: IE4 setup wants inetcpl.cpl.DllInstall
Product: Wine
Version: 1.3.37
Platform: x86-64
URL: http://www.oldversion.com/common/uploaded_files/softwa
res/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
After rebooting, the Internet Explorer 4 setup program complains "an error or
exception occurred while calling the function 'DllInstall' in
'C:\windows\system32\inetcpl.cpl'." This is accompanied by terminal output:
wine: Call from 0x7b83bdc2 to unimplemented function inetcpl.cpl.DllInstall,
aborting
Workaround: delete C:\windows\system32\inetcpl.cpl before running the
installer.
Steps to reproduce:
1. Change the reported Windows version to NT 4.0. (You may also want to remove
the Z: drive, to avoid a scan of the file system)
2. wine iexplore -unregserver
3. Run the unpacker and installer. Ignore an earlier crash and warning about
failure to install some components (bug 25359 & bug 25502).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=28379
Summary: Internet Explorer 4.0 highlights selected text
incorrectly
Product: Wine
Version: 1.3.28
Platform: x86-64
URL: http://www.oldversion.com/common/uploaded_files/softwa
res/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
CC: david.hedberg(a)gmail.com
Regression SHA1: 81bbd17c406e37ea23e8f86f95d307c0c45e2bc7
Created an attachment (id=36389)
--> (http://bugs.winehq.org/attachment.cgi?id=36389)
Terminal output
When selecting some text in IE4, it usually gets highlighted wrong - it appears
that the text changes color as expected, but the background does not. It's very
noticeable on the WineHQ homepage, where much of the text becomes invisible
when selected, while it should be white on a blue background. This wasn't an
issue back in 1.3.6, so I did a regression test:
81bbd17c406e37ea23e8f86f95d307c0c45e2bc7 is the first bad commit
commit 81bbd17c406e37ea23e8f86f95d307c0c45e2bc7
Author: David Hedberg <dhedberg(a)codeweavers.com>
Date: Sun Jan 30 20:47:55 2011 +0800
gdi32: Stay within the clipping area when painting text background.
:040000 040000 f50390b8ae6002fa95ce4cc6fe598b86db9c3f22
d0fbba0a31d64cee11b668c809871706be50f376 M dlls
Reverting the patch fixed the problem. I used these steps to install and test:
1. Change the reported Windows version to NT4
2. Add native,bultin overrides for the following:
advpack, iexplore.exe, jscript, mshtml, shdocvw
3. Remove the Z: drive (not required, but prevents the installer from scanning
the entire file system for Windows browsers to install a plugin to)
4. Run 'wine iexplore -unregserver'
5. Remove some files (replace $HOME/.wine if needed):
rm -f $HOME/.wine/drive_c/{Program\ Files/Internet\
Explorer/iexplore.exe,windows/system32/{advpack.dll,inetcpl.cpl,mshtml.dll,schannel.dll,shdocvw.dll}}
6. Copy the self-extractor to Wine's C: drive and run it to extract the setup
files
7. Run the IE4SETUP.EXE file from the directory the extractor created
8. Choose no when asked to locate WINDOWS.HLP, and ignore some Java VM
installation errors after the reboot
9. Run IE4 and try selecting some text in the news section of the WineHQ
homepage:
wine 'C:/Program Files/Internet Explorer/iexplore.exe' http://www.winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.