http://bugs.winehq.org/show_bug.cgi?id=23158
Summary: Enhance appdb search filters to allow searching for
regressions
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Is there an easy way to search for regressions in the appdb?
The current search filters don't seem to do the trick - but with a small
change, they could.
Right now you can have multiple filters active, e.g.
Active filters
Rating = platinum
Rating = garbage
Wine version < 1.0.1
Wine version > 1.2rc1
but the combination doesn't seem well defined. If rating & wine version
were grouped, e.g.
Active filters
Rating = platinum and Wine version < 1.0.1
Rating = garbage and Wine version > 1.2rc1
that would do fine. Or is there a better way?
--
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=31022
Bug #: 31022
Summary: Siglos Karaoke Professional crashes
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: waste(a)wolf-itc.de
Classification: Unclassified
Created attachment 40720
--> http://bugs.winehq.org/attachment.cgi?id=40720
command output log
I have tried to run Siglos Karaoke Professional, which uses DirectShow, to run
with wine.
Installation and configuration and so is all ok, but when I try to play a file
(avi or cdg), I can't get it work.
The TryOut-Version of the software (which is ok for testing) can be downloaded
from
http://www.powerkaraoke.com/src/prod_siglos-karaoke-professional.php
And for a test an arbitrary avi-file may be taken.
--
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=18494
Summary: Overhead text rendered strange
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: killzenator(a)gmail.com
Created an attachment (id=21127)
--> (http://bugs.winehq.org/attachment.cgi?id=21127)
Output of wine 4Story.exe
All the overhead text in 4Story is rendered in same dark blue color making it
difficult to read.
To quote the user Irfy from the wine forums
"When you fight against players from the other kingdom, you don't see colors
and cannt read the text. Thus you cannot decide whether to run away or stay and
fight. You cannot even know if they are friends or fiends."
--
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=30404
Bug #: 30404
Summary: Galactic Civilizations 1: severe slowdown during ships
battles
Product: Wine
Version: 1.5.1
Platform: x86-64
URL: http://www.galciv1.com/download.asp
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Classification: Unclassified
Created attachment 39744
--> http://bugs.winehq.org/attachment.cgi?id=39744
new Data dir
To reproduce:
- download and install 1.03 demo version from above URL in a clean wineprefix
(same issued with fully patched retail version)
- replace Program Files/Strategy First/Galactic Civilizations Demo/Data dir
with the attached file
- launch the game (wait until intro screens are passed)
- hit "Restore Last Civilization" in the main menu
- hit 3 times the different "Done" buttons
- right-click on the lower ship to start the battle
(hit Esc then "Quit Game" to exit the game once the battle is finished)
=> combat much slower than normal (should only take a couple of seconds)
Setting HKCU\Software\Wine\Direct3D\DirectDrawRenderer=gdi in the registry
somehow fixes/workarounds the issue.
Configuration:
- wine-1.5.1-219-g4b3e4fa (same with 1.5.1 save for unrelated bug 30213)
- linux 3.0
- nVidia driver 295.33 (x86_64)
- Xorg 1.10.4
--
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=33155
Bug #: 33155
Summary: Broken winmm recording when using an ACM codec
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Classification: Unclassified
Extracted from bug #33045, comment #18
wavein recording using the ACM needs rethinking. Currently, it does anything
from hanging, crashing or recording broken streams.
- WID_PullACMData looks incomplete. It starts with checking
device->acm_hdr as if it could persist from a prior invocation,
however it frees it when returning normally. Thus it should remain
local to the function, with device->acm_offs. In error
situations, the current code may break, because it may see
device->acm_hdr.cbDstLength != 0 on entry from a prior
acmStreamConvert MMSYSERR_* return.
- WID_PullACMData needs better error handling. If acmStreamConvert
returns an error, the IACaptureClient buffer remains locked, causing
any subsequent access to error out: recording stalls.
- In WID_PullACMData, the queue->lpNext condition looks bogus in the
light of IMA_ADPCM's 256 bytes block size.
- More generally, PullACMData needs a redesign. What to do when
srcLengthUsed < packet_frames ?!?
I.e. when the mmdevapi packet length does not match the codec's blocksize,
e.g. using 10ms packets while IMA_ADPCM likely needs multiples of 256 bytes.
- We should not throw away recorded bytes given enough buffers.
- mmdevapi does not accept retrieving less than one packet...
- mmdevapi does not allow choosing the packet size.
- WID_PullACMData does not yet handle WOM_DONE correctly. The
other bug report contains a patch.
--
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=23379
Summary: The netbeans 6.8 installer freezes at 0%.
Product: Wine
Version: 1.2-rc4
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehqbugs(a)bugmenot.com
Netbeans 6.8 installer freezes at 0%
Clicking close on the installer just freezes it more
--
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=13376
Summary: NetBeans 6.1 Installer hangs while initializing
installation [dogfood]
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://www.netbeans.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=13279)
--> (http://bugs.winehq.org/attachment.cgi?id=13279)
Console out.
NetBeans 6.1 Installer hangs while initializing installation, all gets black
and the process don't pass from 0%. I'm also install jdk6 update 5.
This is Ubuntu 8.04.
--
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=11465
Summary: url.dll: Filetype association Property Sheet not
implemented (AddMIMEFileTypesPS)
Product: Wine
Version: 0.9.54.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=10
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
The Filetype association Property Sheet is missing
from the Options Dialog in IE2.0 (iexplore.exe from NT4SP6a).
To reproduce: Menu "Ansicht" -> "Optionen"
(guessed Translation: "View" -> "Options")
The missing Property-Sheet is present and works with a native
"url.dll" (from the same SP).
The Property Sheet might be a useful plugin for winecfg.
--
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=33614
Bug #: 33614
Summary: Wine's internet explorer won't display test results at
html5test.com
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: f.ebner94(a)gmail.com
Classification: Unclassified
Created attachment 44495
--> http://bugs.winehq.org/attachment.cgi?id=44495
Console output
Just do
wine iexplore.exe http://www.html5test.com
and you'll see that the test results aren't displayed.
--
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=27202
Summary: lose focus while typing username in POPO2010
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1. Download POPO2010
$ wget http://dl.163.com/popo_2011/update/installer/POPO2011-Full-installer.exe
2. install with wine
$ wine POPO2011-Full-installer.exe
3. install mfc42
$ winetricks -q mfc42
4. override native comctl32.dll, workaround for Bug 25861
$ winetricks -q cc580
5. start popo2010
$ cd ~/.wine/drive_c/Program Files/Netease/POPO$
$ wine Start.exe
6. type username into the login form, then the problem appear:
every time I type a char, POPO will display a dropdown list, this list will get
the mouse focus automatically , so I have to click the login form again and
again to type in the username.
--
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=13555
Summary: Acrobat Pro 6 no longer installs [regression]
Product: Wine
Version: 1.0-rc2
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Created an attachment (id=13495)
--> (http://bugs.winehq.org/attachment.cgi?id=13495)
+msi,+msidb log
After blowing away my .wine directory, I went to reinstall Acrobat Pro 6 from
the CD. This is a full legit version.
Previously, clicking on the Install button worked (most of the time) to install
Acrobat Pro 6; now it does not.
This is the command line error I get:
fixme:exec:OpenAs_RunDLLW 0x4007a, 0x7eea0000, L"Z:\\Adobe Acrobat 6.0
Professional\\setup.exe", 5
Then I went to /media/AcrobatPro6/ and found the relevant setup.exe. this also
fails, with the command line error:
$ wine setup.exe
fixme:advapi:LookupAccountNameW (null) L"me" (nil) 0x33f7fc (nil) 0x33f800
0x33f7f4 - stub
fixme:advapi:LookupAccountNameW (null) L"me" 0x134818 0x33f7fc 0x135728
0x33f800 0x33f7f4 - stub
fixme:msi:msi_unimplemented_action_stub MigrateFeatureStates -> 9 ignored
L"Upgrade" table values
mes@me-laptop:/media/AcrobatPro6/Adobe Acrobat 6.0 Professional$ \wine:
Unhandled page fault on read access to 0x0c940000 at address 0x7ee2f533 (thread
0019), starting debugger...
>
I've attached a +msi,+msidb log.
Note that this regression does not affect Acrobat Reader 6.
--
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=24014
Summary: Prism 5: Issues with multiple projects
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: runiq(a)archlinux.us
Created an attachment (id=30163)
--> (http://bugs.winehq.org/attachment.cgi?id=30163)
Prism (to the left) with two projects open, the top project is currently
focused. The yellow window is a floating notes window.
When I open a single project file in Prism 5.03, everything works fine (apart
from bug #24000 when closing). However, as soon as I open additional project
files, there are new windows opened (exactly as many as there are projects
open). They aren’t rendered at all and as soon as I close them, tho project
they belong to closes with them.
Also, floating notes are only shown when the first open project is focused
(screenshot 1, the yellow dialog in the middle of the Prism main window). They
aren’t shown for any other project.
Screenshot attached (I’m using a tiling WM, XMonad, so those extra windows are
particularly annoying).
Prism 30-day trial: http://www.graphpad.com/demos/
--
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=24000
Summary: Graphpad Prism 5 crash while exiting
Product: Wine
Version: 1.3.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: runiq(a)archlinux.us
Created an attachment (id=30143)
--> (http://bugs.winehq.org/attachment.cgi?id=30143)
Terminal output starting from the segfault.
Whenever I exit Prism 5.03, wine crashes. Terminal output is attached.
System: Arch Linux x86_64, using prepackaged bin32-wine.
Download link for Prism 30-day trial: http://www.graphpad.com/demos/
--
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=19975
Summary: runasdate: child processes do not receive (adjusted)
time
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.nirsoft.net/utils/run_as_date.html
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
RunAsDate is a nifty program to run a program with a different date. In this
case, I wanted to run Microsoft Money 2001 (bug 6189) without changing my
system clock.
A simple testcase with notepad shows it doesn't work though:
$ wine RunAsDate.exe /immediate 01/01/2001 "C:\windows\notepad.exe"
In notepad, press F5. Should see your arbitrary date. Instead, you get the
'real' time.
No terminal output.
--
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=23724
Summary: Entropia Universe: Most textures are missing from
ingame, and game crashes very often while playing
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 13964791(a)student.curtin.edu.au
When running Entropia
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=20449), we have
got to the stage where Entropia can start up and run, but most of the textures
are missing from avatars/objects
(http://img710.imageshack.us/img710/7278/gameplaytwo.png)
Also, if you move the camera, or move around at all really, then the game
crashes.
in Wine1.1.42, entropia starts. i was not able to get entropia to start in
wine1.2
!!!i am using winetricks d3dx9_36.dll override!!!, without this overridded,
entropia does not run.
a crash log (with d3dx9_36.dll override) is here: http://pastebin.com/8svCEFdB
the crash log without the override, is here: http://pastebin.com/6ugDu0VF
thank you =)
--
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=17368
Summary: windows zip management
Product: Wine
Version: 1.1.14
Platform: PC
URL: http://home.scarlet.be/linux/compteco/testzip.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Windows zip management don't work with wine.
I think it's important, especially for windows apps that manage OpenDocument
files.
My little test program (with delphi source) try to extract content.xml file
from newods.zip file (in fact a OpenOffice file renamed).
--
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=15220
Summary: fails to run PeachTree Accounting 8.0 fails with
timezone error
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cjc(a)CosmosEng.com
Created an attachment (id=15975)
--> (http://bugs.winehq.org/attachment.cgi?id=15975)
WINEDEBUG=+relay .wine/drive_c/Peachw/peachw.exe &>wine-pt.out
Error message on failure to load:
> cjc@Home:~$ .wine/drive_c/Peachw/peachw.exe
> fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 480, std (d/m/y): 2/11/2008, dlt (d/m/y): 9/03/2008
> fixme:ntdll:find_reg_tz_info Can't find matching timezone information in the registry for bias 480, std (d/m/y): 2/11/2008, dlt (d/m/y): 9/03/2008
Other info:
wine v 1.0
Ubuntu 8.04 LTS
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
peachtree accounting 8.0
--
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=27368
Summary: IDriver.exe crahses during installation of Peachtree
Complete Accounting 2004
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m_almazan(a)yahoo.com
"The program IDriver.exe has encountered a serious problem and needs to close."
Problem message: 1628 Failed to complete installation
--
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=18935
Summary: Peachtree First Accounting 2010 install fails because
it can't find AVManagerUnified.dll
Product: Wine
Version: 1.1.23
Platform: PC
URL: http://www.peachtree.com/productsServices/tryPeachtree
/
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The installer aborts with the error
Error Number: 0x80040702
Description: Failed to load DLL: SASLib
Setup will now terminate.
SASLib.dll and its dependency AVManagerUnified.dll
are located in c:\windows\temp\{*}\
SASLib.dll fails to load because it can't find AVManagerUnified.dll.
Is Wine supposed to search the directory containing a DLL
for things that DLL depends on?
--
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=27385
Summary: Peachtree First Accounting 2012 install fails because
USER32.DLL GetListBoxInfo not found
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Installation aborts due to (popup) error stating that "The procedure
GetListBoxInfo could not be located in the DLL USER32.dll"
--
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=30173
Bug #: 30173
Summary: Adobe Lightroom 4 fails to start: Unimplemented
function KERNEL32.dll.SleepConditionVariableCS
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Classification: Unclassified
fixme:thread:GetThreadPreferredUILanguages 52, 0x33f8e8, 0x33fb64 0x33f8f0
fixme:thread:GetThreadPreferredUILanguages 52, 0x33f6d4, 0x33f950 0x33f6dc
err:secur32:SECUR32_initSchannelSP TLS library not found, SSL connections will
fail
fixme:thread:GetThreadPreferredUILanguages 52, 0x33f734, 0x33f9b0 0x33f73c
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:heap:HeapSetInformation 0x110000 0 0x33fa74 4
fixme:thread:GetThreadPreferredUILanguages 52, 0x33f494, 0x33f710 0x33f49c
fixme:shell:IShellLinkW_fnGetPath (0x14ad48): WIN32_FIND_DATA is not yet
filled.
fixme:shell:IShellLinkW_fnGetPath (0x14ad48): WIN32_FIND_DATA is not yet
filled.
fixme:process:InitializeConditionVariable stub: 0x4e77cd8
fixme:process:InitializeConditionVariable stub: 0x4e77d68
fixme:process:InitializeConditionVariable stub: 0x4e78708
wine: Call from 0x7bc4e1a0 to unimplemented function
KERNEL32.dll.SleepConditionVariableCS, aborting
wine: Unimplemented function KERNEL32.dll.SleepConditionVariableCS called at
address 0x7bc4e1a0 (thread 004a), starting debugger...
--
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=33130
Bug #: 33130
Summary: QuarkXPress v9.5 crashes after starting up
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mywine(a)schiermeier-software.de
Classification: Unclassified
Created attachment 43821
--> http://bugs.winehq.org/attachment.cgi?id=43821
QuarkXPress v9.5 console log during start
Trying to start QuarkXPressv9.5 crashes after it starts. It is showing the
splash screen and then it end its activity.
See console log.
--
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=12030
Summary: MozyHome: backup service does not work
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.mozy.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: raccoonone(a)procyongames.com
Created an attachment (id=11369)
--> (http://bugs.winehq.org/attachment.cgi?id=11369)
console output
trying to start the MozyHome backup service (mozybackup.exe) via "wine net
start 'mozybackup'" causes the process to start. But after a couple of seconds
it exits without an error message.
I'm not sure what is causing it to close, but most of the fixme's show up right
as mozybackup disappears from the process list.
I've attached a log of the console output.
Any ideas? I was going to start by looking into implementing
WTSEnumerateSessionsW, WTSFreeMemory, ParseStringSidToSid, and
WSALookupServiceBeginW
--
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=9805
Summary: fixme:ole:OaBuildVersion16 Version value not known yet
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Created an attachment (id=8254)
--> (http://bugs.winehq.org/attachment.cgi?id=8254)
WINEDEBUG=+relay,+msgbox
With an old program from http://www.derouck.com/cdromgps/f/index.asp
i have a messagebox with :
"Wrong version of operating system; requires Windows NT 3.51 (build 1057 or
above)"
I have tried with all different windows version in winecfg.
--
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=21187
Summary: OLE Exception code 80004002 - AmiBroker + AmiQuote
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mxn(a)atlas.cz
Steps to reproduce:
1) Download AmiBroker (trial application ver. 5.20) from
http://www.amibroker.com/download.html
2) Install it with command 'wine AmiBroker520.exe'
3) 'cd' to directory where AmiBroker trianl is installed
4) Start AmiBroker with command 'wine Broker.exe'
5) Start AmiQuote with command 'wine AmiQuote/Quote.exe'
6) In 'AmiQuote' choose 'Tools -> Auto-update Amibroker database'
7) Error dialog pops up 'OLE Exception code 80004002'
8) downgrade wine to ver. 1.1.33
9) Repeat steps 4) - 6), no Error dialog is displayed and everything works
correctly (database is updated)
Note: I believe bug is also reproducible in wine 1.1.34.
--
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=21161
Summary: Still Life 2: Black and broken textures
Product: Wine
Version: 1.1.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otto_rey(a)yahoo.com.ar
Still Life 2 display black and broken textures
--
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=31526
Bug #: 31526
Summary: Delphi 7: object inspector prevents copy/paste of
components in form editor
Product: Wine
Version: 1.5.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
To reproduce this bug:
- place any control on the form designer
- press ctrl-c, ctrl-v. There should be two controls now, which is the correct
behavior
- press f11 to activate the object inspector
- click on any of the previously placed controls
- press ctrl-c, ctrl-v. No new controls appear. If you press ctrl-v repeatedly,
you may notice that new text is pasted in previously selected object inspector
property.
--
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=21155
Summary: Delphi: combobox choices hidden behind object
inspector
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kl234(a)web.de
Created an attachment (id=25399)
--> (http://bugs.winehq.org/attachment.cgi?id=25399)
Choices displayed behind the object inspector
When I try to modify the value of a property in Delphi's object inspector, I
can't see the list of possible choices because this list is displayed behind
the object inspector.
The only exception is the property at the very bottom of the object inspector
where it's possible to see some of the choices below the bottom of the object
inspector window (see attached screen capture).
This happens with both Delphi versions I tested with wine 1.1.35: Delphi 3 and
Delphi 7.
--
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=17614
Summary: Rise of Nations: Both mouse keys required for single
left-click
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://www.microsoft.com/games/thronesandpatriots/downlo
ads.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
I don't know when this first started, but this is apparent in Wine 1.0.0
through 1.1.16.
The cursor in Rise of Nations and it's expansion Thrones and Patriots ignores
right-clicks and left-clicks. Clicking BOTH left and right mouse button acts
as a left click.
There is a workaround. Editing the rise2.ini file, setting "ForceGDICursor=1"
allows the cursor/mouse to behave normally. It also corrects a transparency
problem with the cursor.
I don't know what traces might be relevant here...
--
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=20025
Summary: The displayed window is offset in Flirefly
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.freshtel.net/download/internetphone/
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lats(a)yless4u.com.au
Firefly 3.3 windows are being offset from the left and the top by what looks to
be the width/height of the borders. See the screenshot.
--
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=19277
Summary: Internet Explorer 2.0 (Win95) fails to install
Product: Wine
Version: 1.0.1
Platform: PC
URL: http://www.oldversion.com/download/msie20.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, win16
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Internet Explorer 2.0 for Windows 95 fails to install with an INST32.DLL error:
"ThunkConnect32 Failure!!"
This is followed by a second dialog stating:
"A required DLL or function entry point in a required DLL is missing."
The entire console output is:
err:thunk:_loadthunk (INST16.DLL, instthk_ThunkData16, INST32.DLL): Unable to
load 'INST16.DLL', error 2
Wine has to be set to Win95 mode to install.
Workaround is manual extraction.
Same in latest git.
--
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=31873
Bug #: 31873
Summary: 'client.exe' crash when exiting it
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
I run 'client.exe' in Ubuntu 12.04.1 32bit with wine 1.5.14.
It look quite well, but it crash when I try to exit it.
--
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=16392
Summary: Popup showing of incorrectly size.
Product: Wine
Version: 1.1.10
Platform: PC
URL: http://emuleplus.info/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vladimiroski(a)gmail.com
When you hover the mouse over the status bar of eMule Plus, a popup comes with
some information for each tab.
The problem is that the popup for the first tab (the biggest one) is displayed
corrupted (see attachment), others are fine.
--
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=33422
Bug #: 33422
Summary: reporting 'EditWndProc_common undocumented message
0xbf' on behalf of the message
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: heinrich5991(a)gmx.de
Classification: Unclassified
fixme:edit:EditWndProc_common undocumented message 0xbf, please report
That's how you can reproduce it:
1. Download Kaiser 1.22a (http://www.yadam.de/KAISER/kaiser.htm).
2. Start it.
3. When prompted for the names of the players, focus the edit field and click
somewhere else in the window where no other input are.
--
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=20617
Summary: Multithreaded crashing programs create misleading
backtraces when winedbg --auto is called
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugzilla.winehq.org(a)urbanec.net
Created an attachment (id=24590)
--> (http://bugs.winehq.org/attachment.cgi?id=24590)
MultipleThreads test case executable - requires Zoo.dll
When a multithreaded program crashes and winedbg --auto is called to generate a
back trace, the result is not always a back trace for the thread that caused
the crash in the first place.
The attached files can be used to reproduce this problem. The program
MultipleThreads.exe takes no arguments and creates three new threads, each with
a data structure that contains a timeout variable set to 200ms and the thread
start function is set to a function in Zoo.dll. The main thread also calls the
same function in Zoo.dll with the timeout variable set to 240ms.
The function in Zoo.dll prints the value of the timeout, then sleeps for the
duration of the timeout. After this, the function prints that it will crash,
then causes an exception by a write to 0x00000000.
When I run this program, the output is non-deterministic, but more often than
not, the reported crashing thread does not match the thread which is shown in
the backtrace. The discrepancy can be seen from this output:
Thread 0x0019 *** C R A S H I N G ***
wine: Unhandled page fault on write access to 0x00000000 at address 0x10001123
(thread 0019), starting debugger...
Thread 0x001a *** C R A S H I N G ***
Thread 0x001b *** C R A S H I N G ***
Thread 0x0009 *** C R A S H I N G ***
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code
(0x10001123).
... [Register, and stack dumps, backtrace, module list] ...
Threads:
process tid prio (all id:s are in hex)
00000008 (D) Z:\tmp\WineCrashTest\MultipleThreads.exe
0000001b -2
0000001a -2 <==
00000019 -2
00000009 -2
Notice how the first thread to report crash intent was 0x0019, which matches
the the page fault reported by except.c:start_debugger(). However, the thread
list generated by winedbg shows the current thread to be 0x001a.
Also notice that even though the crashing process invoked the debugger on
exception in thread 0x0019, the other three threads in the crashing process
continued to run and generated further page faults before the debugger started.
I would expect that when a crash occurs, all threads in the process would be
suspended immediately and the debugger would be able to determine the thread
that caused the exception.
--
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=20584
Summary: Lemmings Revolution - Crash on exit.
Product: Wine
Version: 1.1.32
Platform: PC-x86-64
URL: http://downloads.gamezone.com/demosfiles/t1178.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ezekiel000(a)lavabit.com
Created an attachment (id=24561)
--> (http://bugs.winehq.org/attachment.cgi?id=24561)
Terminal output
When exiting the game wine crashes and then crashes the dialogue saying that
wine has crashed.
Running Ubuntu 9.10 amd64 wine 1.1.32 with nVidia Geforce 8200 with 185.18.36
official drivers.
--
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=23781
Summary: Parsing of money amount in "BNC Express" ignores
decimal separator
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pierre.guerrier(a)m4x.org
CC: pierre.guerrier(a)m4x.org
Created an attachment (id=29819)
--> (http://bugs.winehq.org/attachment.cgi?id=29819)
Screenshot of buggy input field
I have been trying to run the "BNC Express" program in CrossOver Pro for Mac
(commercial product based on wine by CodeWeavers, and per the CrossOver support
opinion, the bug below belongs to wine. What follows is an updated repost of
the ticket in the CodeWeaver DB:
http://www.codeweavers.fr/support/tickets/browse/?ticket_id=809692
)
Quick context: BNC Express is an accounting program for the self-employed,
generating income reports validated by the french IRS, quite popular I think in
France. It looks like a VB program, publisher website here
http://www.trefle-rouge.com/ - all in french I'm afraid.
The GUI is generally OK, but there is a nasty bug whenever inputting a monies
amount in the program (which of course, happens quite a lot). You are supposed
to type in, say "45,34" (for 45 euros and 34 cents). The part after the
separator is optional. In any case, the software will the normalize the input
and turn it into "45,00" e.g. if you just entered "45". The bug is that it
misses out the separator in Wine/CrossOver. So "45,34" turns into "4534,00".
I have not found anything similar in the ticket database (neither codeweaver or
winehq) or on web. I did try to change the sDecimal and sMonDecimal values in
the Registry (seen another ticket for a VB app that was solved this way). This
DOES change the separator used when re-displaying the normalized amount
(display is set by sDecimal). But it does not change the buggy behavior of
ignoring the separator when parsing the input (it is not possible to input
anything other than numbers and , and . in monies field, the program filters it
and turns "." into "," immediately upon typing - this is an expected behavior,
same as windows).
(this is not a locale problem, the windows environment did inherit the french
locale of the Mac system all right)
When looking further, I found some vaguely reminiscent stuff on winehq, for
instance:
http://bugs.winehq.org/show_bug.cgi?id=10765
(except the bug seems to be on parsing, not on output format)
There is a freely downloadable demo version on the TrefleRouge website above
(or I can e-mail it you if you can't find your way in the french website).
Launching the demo, loading the sample balance sheet takes you to the main
screen which is simply bill/receipts input, and the bug shows up immediately. I
have attached a screenshot of this screen with the problem highlighted.
--
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=22689
Summary: Bonzai3D - dialogue boxes inactive when opened
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://formz.com/products/bonzai3d/bonzai3dDownloadTri
al.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nick(a)lasventajas.com
In Bonzai3D dialogue boxes are inactive until the window bar of the box is
clicked. For example, right clicking on an object in the project window and
selecting, 'Attributes', invokes a dialogue box with a number of options
relative to the object. All options are inactive until the window bar of the
dialogue box is clicked at which point the box becomes live.
--
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=24979
Summary: halfworking tab key
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emoxam(a)gmail.com
"tab" key works only "to tree". not "from tree" of a connections list!
--
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=30901
Bug #: 30901
Summary: [PunkBuster && 64Bits Prefix]Assassin's Creed
Multiplayer does not works
Product: Wine
Version: 1.5.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: berillions(a)gmail.com
Classification: Unclassified
Since i create the hack to pass the Ubisoft Game Launcher properly, it's
possible to play at the recent Ubisoft's games like AC : Revelations without a
crack.
Actually, i try to play at this game in 2 prefix (the first is a 32Bits prefix
and the second is a 64Bits prefix)
32Bits Prefix :
There are no problems, the game works correctly in Soloplayer mode and
Multiplayer. For this second point, it's great because the Multiplayer use
Punkbuster.
64Bits Prefix :
It's in this prefix that i have the problem. The Soloplayer mode works
perfectly but impossible to join a session in the Multiplayer Mode. I'm always
kicked by Punkbuster.
PnkBstrA and PnkBstrB services are the problems :
1- When i launch game in the 32Bits Prefix, these services are launched
automatically without problem. They appear in my process list so the
multiplayer works fine.
2- But, when i launch the game in my 64Bits prefix, these services are not
launched so it's impossible to launch a multiplayer session.
When i launch "winecfg" in the 64Bits prefix, i have this fixme in my console :
Code:
fixme:service:scmdatabase_autostart_services Auto-start service L"PnkBstrA"
failed to start: 2
I haven't this message in my 32Bits prefix because PnkBstrA.exe/PnkBstrB.exe
services are launched
Thanks
--
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=26998
Summary: Football manager just start process sometimes
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jakob(a)knugen.nu
Sometimes when i start the game trough steam only a process named fm.exe and i
need to kill it and restart the game a couple of time to get it to start.
--
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=23995
Summary: FM2010 Fails to start every time.
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: admin(a)pokemonger.com
FM2010 (Demo Download - http://www.gamershell.com/download_52136.shtml ) Fails
to start every time, it stalls, I have progressed all the way back to 1.1.31
(didnt run at all on 1.0) to try and do a regression test, but I cant find a
version of wine that the game starts each and every time on.
It does start in the end, but it can take multiple attempts.
This has been tested on Debian and Ubuntu, I have tried as I said regression
testing but I just dont know where to start with the fact I cant find a version
of wine that does not have this issue.
--
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=29204
Bug #: 29204
Summary: the dib text rendering breaks text in d3d
Product: Wine
Version: 1.3.33
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)gmail.com
Classification: Unclassified
Regression SHA1: e9612c1af06d09dbf03745535288575e05cacb56
Created attachment 37703
--> http://bugs.winehq.org/attachment.cgi?id=37703
examples of text rendering
the gdi32 change that adds dib text rendering
6a629710ce02012defed1cfa30f8c3c91298ab99 -
d43d17e24857fafcb7964c91d8a7a05520964df3
breaks text rendering in d3d
Attaching pieces of text cut from some screenshots.
--
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=30814
Bug #: 30814
Summary: Age of Empires II scrolling gets stuck after Alt-Tab
away and back
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nemesis(a)icequake.net
Classification: Unclassified
Wine 1.2 did not have this problem but was much slower.
Wine 1.5.5 is much faster and just a much better overall experience with this
one caveat.
If you start a game and immediately alt-tab away and back, nothing is amiss.
You can even click on some things onscreen and there is no problem.
However, once you have scrolled the screen either by moving the mouse towards
the edges, or by using the arrow keys on the keyboard, if you alt-tab away and
back, upon returning the screen will immediately begin to scroll in an
apparently random direction and cannot be stopped.
I did the WINEDEBUG="+cursor,+dinput,+ddraw" winedbg Age2_x1/age2_x1.exe and
did not come up with anything obviously wrong while the problem was occurring.
A lot of this kind of stuff:
trace:ddraw:surface_lock locked surface returning description :
trace:ddraw:DDRAW_dump_members - DDSD_CAPS : DDSCAPS_OFFSCREENPLAIN
DDSCAPS_VIDEOMEMORY DDSCAPS_LOCALVIDMEM
trace:ddraw:DDRAW_dump_members - DDSD_HEIGHT : 768
trace:ddraw:DDRAW_dump_members - DDSD_WIDTH : 1024
trace:ddraw:DDRAW_dump_members - DDSD_PITCH : 1024
trace:ddraw:DDRAW_dump_members - DDSD_PIXELFORMAT : ( DDPF_PALETTEINDEXED8
DDPF_RGB , RGB bits: 8, R 00 G 00 B 00)
trace:ddraw:ddraw_surface1_Unlock iface 0xa2f01a8, data 0xbf44020.
trace:ddraw:ddraw_surface7_Unlock iface 0xa2f0198, rect (null).
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:SetCursor (nil)
trace:ddraw:ddraw_surface1_Blt iface 0xa303ef8, dst_rect (0,0)-(24,32),
src_surface 0xa2f01a8, src_rect (885,649)-(909,681), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_surface7_Blt iface 0xa303ee8, dst_rect (0,0)-(24,32),
src_surface 0xa2f0198, src_rect (885,649)-(909,681), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_surface1_GetClipper iface 0xa2f01a8, clipper 0x33c81c.
trace:ddraw:ddraw_surface7_GetClipper iface 0xa2f0198, clipper 0x33c81c.
trace:ddraw:ddraw_surface1_SetColorKey iface 0xa305188, flags 0x8, color_key
0x33c7f8.
trace:ddraw:ddraw_surface7_SetColorKey iface 0xa305178, flags 0x8, color_key
0x33c7f8.
trace:ddraw:ddraw_surface7_EnumAttachedSurfaces iface 0xa305178, context
0x33c7b8, callback 0x7e72abb0.
trace:ddraw:ddraw_surface7_EnumAttachedSurfaces end of enumeration.
trace:ddraw:ddraw_surface1_BltFast iface 0xa2f01a8, dst_x 885, dst_y 649,
src_surface 0xa305188, src_rect (0,0)-(24,32), flags 0x11.
trace:ddraw:ddraw_surface7_BltFast iface 0xa2f0198, dst_x 885, dst_y 649,
src_surface 0xa305178, src_rect (0,0)-(24,32), flags 0x11.
trace:ddraw:ddraw_surface1_Blt iface 0xa4777f0, dst_rect (0,0)-(1024,768),
src_surface 0xa2f01a8, src_rect (0,0)-(1024,768), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_surface7_Blt iface 0xa4777e0, dst_rect (0,0)-(1024,768),
src_surface 0xa2f0198, src_rect (0,0)-(1024,768), flags 0x1000000, fx (nil).
trace:ddraw:ddraw_clipper_GetClipList iface 0x151748, rect (0,0)-(1024,768),
clip_list (nil), clip_list_size 0x33c7b8.
trace:ddraw:ddraw_clipper_GetClipList iface 0x151748, rect (0,0)-(1024,768),
clip_list 0xa52ab90, clip_list_size 0x33c7b8.
trace:ddraw:ddraw_palette_SetEntries iface 0x143150, flags 0, start 0, count
256, entries 0x9192a0.
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
trace:cursor:X11DRV_GetCursorPos pointer at (885,649) server pos 885,649
Let me know what I can do to help debug.
--
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=30940
Bug #: 30940
Summary: Could not start Tween.exe using wine-mono
Product: Wine
Version: 1.5.6
Platform: x86
URL: http://sourceforge.jp/projects/tween
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felixonmars(a)gmail.com
CC: fracting(a)gmail.com
Classification: Unclassified
0. Software Download:
http://sourceforge.jp/projects/tween/releases/
It's free and open-source.
1. How to reproduce:
$ wine Tween.exe
2. Result:
Unhandled Exception: System.InvalidOperationException:
WinForms_SeeInnerExceptio
n ---> System.TypeInitializationException: An exception was thrown by the type
i
nitializer for Tween.AppendSettingDialog ---> System.OutOfMemoryException: Not
e
nough memory to complete operation [GDI+ status: OutOfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.My.MyProject+MyForms.Create__Instance__[TweenMain] (Tween.TweenMain
I
nstance) [0x00000] in <filename unknown>:0
at Tween.My.MyProject+MyForms.get_TweenMain () [0x00000] in <filename
unknown>
:0
at Tween.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:
0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun
() [0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(
System.String[] commandLine) [0x00000] in <filename unknown>:0
at Tween.My.MyApplication.Main (System.String[] Args) [0x00000] in <filename
u
nknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidOperationException:
WinForms_Se
eInnerException ---> System.TypeInitializationException: An exception was
thrown
by the type initializer for Tween.AppendSettingDialog --->
System.OutOfMemoryEx
ception: Not enough memory to complete operation [GDI+ status: OutOfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.My.MyProject+MyForms.Create__Instance__[TweenMain] (Tween.TweenMain
I
nstance) [0x00000] in <filename unknown>:0
at Tween.My.MyProject+MyForms.get_TweenMain () [0x00000] in <filename
unknown>
:0
at Tween.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:
0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun
() [0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(
System.String[] commandLine) [0x00000] in <filename unknown>:0
at Tween.My.MyApplication.Main (System.String[] Args) [0x00000] in <filename
u
nknown>:0
Unhandled Exception: System.TypeInitializationException: An exception was
thrown
by the type initializer for Tween.AppendSettingDialog --->
System.OutOfMemoryEx
ception: Not enough memory to complete operation [GDI+ status: OutOfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: An
except
ion was thrown by the type initializer for Tween.AppendSettingDialog --->
System
.OutOfMemoryException: Not enough memory to complete operation [GDI+ status:
Out
OfMemory]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000] in <filename
u
nknown>:0
at System.Drawing.Text.InstalledFontCollection..ctor () [0x00000] in
<filename
unknown>:0
at System.Drawing.FontFamily.get_Families () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog.PopulateFontList () [0x00000] in <filename
unknown>:0
at System.Windows.Forms.FontDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.FontDialog:.ctor
()
at Tween.AppendSettingDialog.InitializeComponent () [0x00000] in <filename
unk
nown>:0
at (wrapper remoting-invoke-with-check)
Tween.AppendSettingDialog:InitializeCo
mponent ()
at Tween.AppendSettingDialog..ctor () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) Tween.AppendSettingDialog:.ctor ()
at Tween.AppendSettingDialog..cctor () [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at Tween.TweenMain..ctor () [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(S
ystem.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globa
lization.CultureInfo culture) [0x00000] in <filename unknown>:0
--
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=22755
Summary: Regression : win16 installer program of "de rouck"
freeze
Product: Wine
Version: 0.9.31.
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Created an attachment (id=28058)
--> (http://bugs.winehq.org/attachment.cgi?id=28058)
wine-1.1.31 screenshot
It works with wine-1.1.30.
With wine-1.1.31, see screenshot
Regression test says :
3b1186de5aeabd261e70dab8b78a730030075ca1 is the first bad commit
commit 3b1186de5aeabd261e70dab8b78a730030075ca1
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Oct 7 17:14:10 2009 +0200
kernel32: Move the 16-bit string functions to kernel16.c.
:040000 040000 3412021b8c21c250ee3ccc60ce31c3f3f9365c50
3c5be0f4e2330e28e86e4b839447d40d88bf42f3 M dlls
--
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=33131
Bug #: 33131
Summary: taskkill doesn't support /fi (filtering) option
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 33130
Classification: Unclassified
Noticed while looking at bug 33130
0067:Call KERNEL32.CreateProcessW(00000000,008fcb00
L"C:\\windows\\system32\\taskkill.exe /F /Fi \"MODULES eq
AutoupdatePlugin.cpl\"
/T",00000000,00000000,00000000,00000400,00000000,00000000,008fb1fc,008fb240)
ret=7e4d517f
--
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=24169
Summary: QuarkXPress version 8.x hangs on start (missing double
quoting of browser path in
HKCR\htmlfile\shell\open\command)
Product: Wine
Version: 1.3.1
Platform: x86
URL: http://downloads.quark.com/Details.aspx?fid=163&&mid=2
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
someone in appdb reported QuarkXPress version 8.x (2010 version) hangs on
start.
Downloaded a 60-day trial ... it does indeed - due to a Wine shortcoming and an
application bug. ;-)
Basically the app retrieves default browser setting from registry and does some
parsing to extract browser (unquoting and splitting '\' '/' path delimiter).
Their parsing is broken in a way that it can't cope with missing double quotes
around browser path leading to endless looping.
HKEY_CLASSES_ROOT\htmlfile\shell\open\command ->
C:\windows\system32\winebrowser.exe -nohome
With the browser path in double quotes, QuarkXPress 8 starts fine.
"C:\windows\system32\winebrowser.exe" -nohome
The quoting is most likely present in Windows as the app would loop there too
without.
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=31033
Bug #: 31033
Summary: Multiple apps need IWbemServices::GetObject to
retrieve WMI class instances
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wmi&wbemprox
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
continuation of bug 20651
Multiple apps still fail to query for WMI classes/properties because
IWbemServices::GetObject method is not implemented (they use a different
method).
One app is bug 28682 (Ragnarok downloader)
Example .NET code:
--- snip ---
ManagementClass class2 = new ManagementClass("Win32_Processor");
foreach (ManagementObject obj2 in class2.GetInstances())
{
if (str == string.Empty)
{
str = obj2.Properties["ProcessorId"].Value.ToString();
}
}
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa392109%28v=vs.85%…
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=24225
Summary: provide "taskkill" command line tool to aid installers
(Impulse installer and more)
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
various installers use "taskkill" command line tool to terminate running
processes, preventing possible sharing/update problems with components to be
installed.
--- snip ---
wine: cannot find L"C:\\windows\\system32\\TASKKILL.exe"
--- snip ---
Trace logs for "Impulse" installer as example:
--- snip ---
0034:Call KERNEL32.CreateProcessA(00000000,0092fab0
"\"C:\\windows\\system32\\TASKKILL.exe\" /f /im
impulse.exe",00000000,00000000,00000000,00000010,00000000,00000000,0108e980,0108e970)
ret=004e5657
...
wine: cannot find L"C:\\windows\\system32\\TASKKILL.exe"
0034:Ret KERNEL32.CreateProcessA() retval=00000000 ret=004e5657
...
0037:Call KERNEL32.CreateProcessA(00000000,0092fab0
"\"C:\\windows\\system32\\TASKKILL.exe\" /f /im
impulsedock.exe",00000000,00000000,00000000,00000010,00000000,00000000,0118e980,0118e970)
ret=004e5657
...
wine: cannot find L"C:\\windows\\system32\\TASKKILL.exe"
0037:Ret KERNEL32.CreateProcessA() retval=00000000 ret=004e5657
...
003a:Call KERNEL32.CreateProcessA(00000000,0092fab0
"\"C:\\windows\\system32\\TASKKILL.exe\" /f /im
impulsemini.exe",00000000,00000000,00000000,00000010,00000000,00000000,00e5e980,00e5e970)
ret=004e5657
...
wine: cannot find L"C:\\windows\\system32\\TASKKILL.exe"
003a:Ret KERNEL32.CreateProcessA() retval=00000000 ret=004e5657
...
003d:Call KERNEL32.CreateProcessA(00000000,0092fab0
"\"C:\\windows\\system32\\TASKKILL.exe\" /f /im
impulsenow.exe",00000000,00000000,00000000,00000010,00000000,00000000,0108e980,0108e970)
ret=004e5657
...
wine: cannot find L"C:\\windows\\system32\\TASKKILL.exe"
003d:Ret KERNEL32.CreateProcessA() retval=00000000 ret=004e5657
...
--- snip ---
Wine should provide such a tool to aid installers.
Reference: http://technet.microsoft.com/en-us/library/bb491009.aspx
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=32758
Bug #: 32758
Summary: TurboTax 2012 fails to run update service
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: focht(a)gmx.net
Depends on: 27991
Classification: Unclassified
Using wine-1.5.22, you'll need to workaround bug 27991, and install dotnet40
with winetricks. The installer will then work fine.
Try to start it, and you'll get 3 errors on start about the update service not
working. The relevant turbotax help links:
http://turbotax.intuit.com/support/iq/Update-Product/Error-5639--Can-t-Conf…http://turbotax.intuit.com/support/iq/Connectivity-Errors/Error-5640--Can-t…
stdout shows:
Operation is not supported on this platform.
3 times, which is probably related.
--
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=16905
Summary: CommitMonitor: Application could not connect to
repository
Product: Wine
Version: 1.1.12
Platform: PC-x86-64
URL: http://code.google.com/p/commitmonitor/downloads/list
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)stanev.org
When trying to connect to repository to check for activity, the tool gives
following error message:
"An error occured the last time CommitMonitor tried to access the url:
http://example.com/svn/example
Couldn't perform atomic initialization"
The application uses libsvn, the error is likely to come from here:
http://svn.collab.net/repos/svn/trunk/subversion/libsvn_subr/atomic.c
--
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=25749
Summary: TortoiseSVN fails after successful commit
Product: Wine
Version: 1.3.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey(a)niakhaichyk.org
Created an attachment (id=32800)
--> (http://bugs.winehq.org/attachment.cgi?id=32800)
TortoiseSVN log for commit operation
TortoiseSVN fails after successful commit for wine 1.3.*. In wine 1.2.* all
works perfectly.
--
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=22992
Summary: SVN-Monitor needs gdiplus.dll.GdipGetRenderingOrigin
Product: Wine
Version: 1.2-rc2
Platform: x86
URL: http://www.svnmonitor.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
SVN Monitor doesn't run well with builtin gdiplus.
Although it doesn't crash, a nasty error dialog is displayed each time the
exception is thrown (can be dismissed).
--- snip ---
...
fixme:gdiplus:GdipDrawImagePointsRect Image wrap mode not implemented
fixme:gdiplus:GdipGetRegionScansCount not implemented
...
fixme:shell:URL_ParseUrl failed to parse L"SVNMonitor.resources"
wine: Call from 0x7b836c0f to unimplemented function
gdiplus.dll.GdipGetRenderingOrigin, aborting
--- snip ---
Install recipe (see also appdb entry):
--- snip ---
$ sh winetricks -q dotnet20
TortoiseSVN is also needed (http://tortoisesvn.net/downloads/) Install the MSI
package:
$ wine start TortoiseSVN-xxx-win32-svn-xxx.msi
Now run the SVN Monitor application installer.
$ wine SVNMonitor-xxx-Setup.exe
--- snip ---
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=27269
Summary: Bitcoin display ugly
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=34876)
--> (http://bugs.winehq.org/attachment.cgi?id=34876)
Screenshot : bitcoin
1. download bitcoin
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.21/bitcoi…
$ sha1sum bitcoin-0.3.21-win32-setup.exe
3f94d6a8b08c455a7886561089270247eaada7b4 bitcoin-0.3.21-win32-setup.exe
2. install with wine
3. start bitcoin
$ wine bitcoin.exe
fixme:msvcrt:_setmbcp trail bytes data not available for DBCS codepage 0 -
assuming all bytes
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:system:SetProcessDPIAware stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
some part of bitcoin became transparent, see screenshot for details
--
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=23782
Summary: Spaceforce Rogue Universe crashes in game videos
(iccvid.dll)
Product: Wine
Version: 1.2
Platform: x86
URL: http://www.gamershell.com/download_19328.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=29821)
--> (http://bugs.winehq.org/attachment.cgi?id=29821)
traces log using only built-in dlls
Spaceforce: RU always crashes when trying to play the game videos. Both the
demo and the patched retail version is affected.
How to reproduce the issue in the demo:
1. Install the demo then launch it from the game's /System directory, either by
Start.exe (the launcher), or directly the game by SpaceForce.exe. Wine will
crash when trying to play the intro video/company logos.
The crash is always reproducible, when using Wine's built-in dlls.
output of the 'file' command on one of the game's video files:
Intro001.mff: RIFF (little-endian) data, AVI, 640 x 480, 25.00 fps, video:
uncompressed Cinepak, audio: uncompressed PCM (stereo, 44100 Hz)
If I replace the built-in iccvid.dll with the free version of the cinepak codec
(available: http://www.probo.com/cinepak.htm) the issue changes into: Wine
doesn't crash anymore, but plays the videos in a strange way: almost the whole
screen is black, only a small chunk of the video can be seen at the left side
of the screen. No music during the videos and in the whole game, though.
Fedora 13
Nvidia 7600 series card / driver 195.36.31
The attached log shows traces, using
winedebug=+ole,+msvideo,+iccvid,+avifile,+amstream,+quartz (all dlls are the
built-in ones)
--
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=13042
Summary: CodeGear RAD Studio 2007 does not install
Product: Wine
Version: 0.9.61.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lehmannd(a)in.tum.de
The installer of CodeGear RAD Studio 2007 (the successor to Borland Delphi and
C++ Builder) immediately fails after starting with the error message:
Runtime error in install: Cannot open AVI
The console error is:
err:msvidc32:CRAM_DecompressBegin Bad output format
After that some access violations and the installer quits without having
installed anything.
The installer used is any msi-based installer named "InstallAware" that adds a
lot of things to msi, like 7zip compression (and apparently avi playback).
A trial can be downloaded here: http://www.codegear.com/products/radstudio. It
is NOT necessary to register on the site to see the installation bug.
--
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=17963
Summary: ASD's "Lifeforce" demo crashes when missing
'msvidc32.dll' is overridden with native version
Product: Wine
Version: 1.1.18
Platform: PC
URL: http://www.scene.org/file_dl.php?url=ftp://ftp.scene.org
/pub/parties/2007/assembly07/demo/lifeforce_by_andromeda
_software_development.zip&id=380705
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvfw32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonathanbusby(a)gmail.com
Created an attachment (id=20311)
--> (http://bugs.winehq.org/attachment.cgi?id=20311)
Text output to STDERR/STDOUT during run, and resulting crash of application
When attempting to run ASD's "Lifeforce" demo the program complains about the
absence of the "Microsoft Video 1" codec. The demo does run, flawlessly I might
add, without the above codec with the only "problem" being that the demo
voluntarily disabled the small amount of in-demo video and notifies the user of
this before running with an 'OK' dialog box. However, if one attempts to supply
the missing codec by overriding 'msvidc32.dll' with the native Microsoft
version, the demo crashes. The crash is always reproducible, stemming from a
null reference at one specific location/instruction in the program text. This
behavior does not, of course, manifest itself if the program is run natively
under, say, Windows XP.
--
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=14695
Summary: Lifeforce demo misses codecs
Product: Wine
Version: 1.1.2
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: atari(a)gabo.pl
Lifeforce demoscene production (download here:
http://pouet.net/prod.php?which=31571) displays an error message (at startup)
that some video codec (Microsoft Video 1) is missing. Then, it runs but do not
display some videos. Otherwise it runs fine.
--
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=22344
Summary: Die Völker: upside down Cinepak intro video with
greenish colors
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: iccvid
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Created an attachment (id=27338)
--> (http://bugs.winehq.org/attachment.cgi?id=27338)
+iccvid,+msvideo log (with wine-1.1.18)
Wine with a native amstream and quartz renders the first intro video
(intro.avi) of "Die Völker / The Alien Nations" upside down and in wrong
colours, with a strong green stain. Bug #17893 explains why WINEDLLOVERRIDE is
needed. Actually, there are two issues with the Cinepak codec:
A) The iccvid codec refuses a BITMAPINFOHEADER with negative height.
B) Native amstream tries hard to find a suitable transform. Alas, the codec
does not refuse to convert into YUY2 or similar uncompressed formats, which I
believe explains the greenish colour.
This log snippet about A) shows the use of a negative height in the header of
the uncompressed format, which indicates a top-down DIB according to MSDN
http://msdn.microsoft.com/en-us/library/dd183376.aspx
trace:iccvid:ICCVID_DecompressQuery in: planes = 1
bpp = 24
height = 360
width = 640
compr = "cvid"
trace:iccvid:ICCVID_DecompressQuery out: planes = 1
bpp = 24
height = -360
width = 640
compr = "\x00\x00\x00\x00"
This log snippet about B) shows how native amstream queries about decompressing
into YUY2 and other similar fcc formats like UYVY (see log).
trace:iccvid:ICCVID_DecompressQuery in: planes = 1
bpp = 24
height = 360
width = 640
compr = "cvid"
trace:iccvid:ICCVID_DecompressQuery out: planes = 1
bpp = 16
height = 360
width = 640
compr = "YUY2"
This video displays fine using Wine's built-in mciavi.
What's obscure to me is why is this video rendered upside down with native
amstream and quartz? Negative heights are returned by the iccvid codec with
BADFORMAT, so it is a priori not responsible for the inversion.
a) Is this a bug in native amstream, forgetting that it did not obtain
a top-down decompressor?
b) Is Wine's understanding of top-down the opposite of what native uses?
c) Is the codec's understanding of bottom-up wrong?
What made me curious is the need to change the FFmpeg msvideo1 code for Wine:
the original code would render videos upside down. And iccvid similarly
contains #ifdef ORIGINAL code to invert the orientation.
--
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=29852
Bug #: 29852
Summary: Star Trek Birth of the Federation - No Videos
Product: Wine
Version: 1.4-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maquis196(a)yahoo.co.uk
Classification: Unclassified
Although it doesn't affect gameplay, when you load game, create game and
complete game you are supposed to get a video to watch. The game doesn't play
them.
Now it could be a missing codec? The videos play in mplayer fine (the intro is
bizzare where its a mute video and a wav plays at same time).
Attachment is mplayer output for the new game as Romulans video.
--
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=25180
Summary: Clonk Endeavour's intro video is not rendered
correctly
Product: Wine
Version: 1.3.7
Platform: x86
URL: http://www.clonk.de/ce.php?lng=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
The intro has several problems.
For example it should be rendered in mostly color just like when playing with
Totem.
--
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=16492
Summary: Google Sketchup 7 Pro can't export animation as .avi
Product: Wine
Version: 1.1.10
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Tried exporting an animation (roughly as described in
http://www.chrisfullmer.com/tutorials/suv )
Sketchup always complained "cannot initialize compressor".
I'll attach a +relay,+avifile log (with several codecs installed).
--
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=20036
Summary: Monopoly Tycoon crash while starting
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=23582)
--> (http://bugs.winehq.org/attachment.cgi?id=23582)
Console output
While the game is starting it shows a warning an after i close it it just
crash. You can see the console output.
--
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=15039
Summary: MSVC 6: Menu popdowns too narrow for arrows
Product: Wine
Version: 1.1.1
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: claus.fischer(a)clausfischer.com
CC: claus.fischer(a)clausfischer.com
Microsoft Visual C++ 6 is working to a large extent.
When opening a menu of the developer studio, the menu items
with arrows (that open submenus) are not displayed correctly.
The triangular arrows on the right end will stick out of the
menu popdown area. I'm not sure if they just stick out to the
end of the "shadow" (3d effect) around the popdown, or sometimes
more.
They should be fully contained in the popdown area.
--
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=11681
Summary: Add support for video overlay
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: NEW
Severity: major
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thunderbird2k(a)gmx.net
Hi,
At the moment Wine doesn't support Video Overlay in DirectX. In order to make
DirectDraw feature complete we need this ability. It is used in media players
(in a lot of cases through quartz 'DirectShow') to improve rendering
performance. A free application that attempts to use it in directx mode (the
default option) is VLC. Further Picasa seems to need it too and their special
Wine branch supports video overlay using Xv but in a hacky way.
It is relatively easy to add a software implementation to DirectDraw/WineD3D
but it would be slow. For best performance and less reinventing the wheel we
need to implement overlay using Xv. The most tricky part would be on how to
access Xv from within wined3d.
Roderick
--
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=30712
Bug #: 30712
Summary: Installer of CorelDRAW X5
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bilufe(a)yahoo.com.br
Classification: Unclassified
In the installer CorelDRAW X5, the screen displaying the license text is
displayed only text en_us.txt and you can not see the buttons on the dialog.
When you close the dialog, the program crashes.
--
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=19730
Summary: yahoo games <blood ties> crashes when entering
windowed mode <wine 1.1.27>
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikescony1(a)ameritech.net
Purchased game from yahoo games <Blood Ties>
After installing and configuring wine 1.1.27,
I installed and registered the application.
The game starts with some bad fonts and graphics
and the mouse is not visable when in full screen
there is an animated mouse associated with the
application but I found that when you entered into
options and selected windowed mode that usually fixes
that issue with the mouse.
Now when you enter windowed mode the game crashes.
Earlier versions of wine <1.1.XX - 1.1.26> would not
allow you to register the game but with your improvements
to the gecko engine I am able to register the game with
no problems, but there seems to be a problem when the registration
download. The download attempts to install new registry keys and
wine is not accepting them <wine vers 1.1.27>
Can you please help.
--
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=24115
Summary: Windows TAPI Service not located by Avaya IP Agent
R6.0.28.601
Product: Wine
Version: 1.3.1
Platform: x86
URL: ftp://ftp.avaya.com/incoming/Up1cku9/tsoweb/ipagent/IP
AgentR6028601.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rusivi1(a)gmail.com
Created an attachment (id=30347)
--> (http://bugs.winehq.org/attachment.cgi?id=30347)
wine1.3.1: wine IPAgentR6028601.exe >>log.txt 2&>1
Windows TAPI service cannot be located by Avaya IP Agent R6.0.28.601 (please
see screenshot.png)
lsb_release -rd
Description: Ubuntu 10.04.1 LTS
Release: 10.04
apt-cache policy wine
wine:
Installed: 1.3.1-1
Candidate: 1.3.1-1
Version table:
*** 1.3.1-1 0
100 /var/lib/dpkg/status
1.2-0ubuntu1~lucidppa1 0
500 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/ lucid/main
Packages
1.1.42-0ubuntu4 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/universe Packages
--
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=18243
Summary: wine iexplore.exe http://www.some.file.com/foobar.exe
fails
Product: Wine
Version: 1.1.20
Platform: PC
URL: ftp://ftp.gnupg.org/gcrypt/binary/sha1sum.exe
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=20753)
--> (http://bugs.winehq.org/attachment.cgi?id=20753)
terminal output
While trying out various means of downloading files for my SoC project, I found
that UrlDownloadToFile doesn't support ftp protocol, only http.
No problem, I figured, we've got an IE implementation, I can use that!
but alas:
$ wine iexplore.exe ftp://ftp.gnupg.org/gcrypt/binary/sha1sum.exe
fails. The key line appears to be:
err:mshtml:before_async_open GetWineURL returned NULL
The same occurs for http protocol downloads.
Works fine on Windows. Full terminal output attached.
--
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=32057
Bug #: 32057
Summary: google custom search doesn't work in iexplore
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
wine iexplore http://winehq.org
Try to search something (searchbox on top, right corner)
-> It doesn't show search results wine-1.5.15-329-gc60a0b8
--
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=31059
Bug #: 31059
Summary: On setting Youtube.com local preferences iexplorer
crashes.
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ieframe
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mayanksuman(a)live.com
Classification: Unclassified
Created attachment 40772
--> http://bugs.winehq.org/attachment.cgi?id=40772
Backtrace of Crash
On saving the local preferences for yuotube.com the native iexplorer crashes.
--
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=25719
Summary: logmein free installer hangs
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
logmein free is a free-as-in-beer remote access program, see
https://secure.logmein.com/US/products/free/
The installer is very slow, and seems to hang altogether on
the LogMeIN Account Details dialog. An +msi log shows
things still happening when you move the window, but
nothing seems to be going on from the user's point of view,
and the Cancel button does nothing (besides provide
visual feedback).
--
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=14253
Summary: Mobipocket Creator has incomplete and unusable UI
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonathan.hepburn(a)gmail.com
Created an attachment (id=14548)
--> (http://bugs.winehq.org/attachment.cgi?id=14548)
Console messages
Although Mobipocket Creator installs smoothly and opens, the UI is incomplete
(missing text entries, header and background graphics) and the only function
possible is opening the Help browser.
Wine 1.0.0 on Debian testing "Etch"
Download link for Mobipocket Creator is
http://www.mobipocket.com/en/DownloadSoft/default.asp?Language=EN
Console messages attached.
--
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=17292
Summary: Lightsmark won't run
Product: Wine
Version: 1.1.14
Platform: Other
URL: http://downloads.guru3d.com/Lightsmark-download-
1777.html
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The benchmark installs ok, but won't get past the first window.
--
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=23794
Summary: Dora's Carnival 2: Boardwalk Adventure uses only small
part of screen
Product: Wine
Version: 1.2
Platform: x86
URL: http://downloadcdn.shockwave.com/pub/doras-carnival-2-
boardwalk-adventure/InstallDorasCarnival2BoardwalkAdve
nture.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
After working around bug 23749 and bug 13496 with 'sh winetricks ie6 msvcrt',
the game runs nicely... in a quarter of my screen. +x11settings shows
...
trace:x11settings:X11DRV_EnumDisplaySettingsEx mode -1 (current) -- getting
current mode (XRandR)
trace:x11settings:X11DRV_EnumDisplaySettingsEx mode 0 -- 1280x1024x32bpp @50 Hz
(XRandR)
...
trace:x11settings:X11DRV_ChangeDisplaySettingsEx
DM_fields=BITSPERPEL,PELSWIDTH,PELSHEIGHT,DISPLAYFLAGS,DISPLAYFREQUENCY
trace:x11settings:X11DRV_ChangeDisplaySettingsEx width=800 height=600 bpp=32
freq=50 (XRandR)
err:x11settings:X11DRV_ChangeDisplaySettingsEx No matching mode found
800x600x32 @50! (XRandR)
...
Seems we're confusing ourselves by reporting 50Hz?
Very similar problem reported in http://forum.winehq.org/viewtopic.php?t=6526
(wine-users, oct 2009) about a different flash game, Hidden Expedition Titanic,
probably with wine-1.1.31.
--
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=16114
Summary: Bridge It fails to detect Nvidia hardware
Product: Wine
Version: 1.1.8
Platform: PC-x86-64
URL: http://www.chroniclogic.com/bridgeit_download.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquitsnake(a)gmx.net
Bridge It is an old game (~2004) developed in conjunction with Nvidia.
Therefore, it requires Nvidia hardware to play.
I'm using an Nvidia 8600GT, but the game fails to detect it. Upon launch, I am
greeted by a message box "Incompatibly hardware detected" since it expects
Nvidia hardware.
I am unsure if this is because the game can't possibly know about an
8th-generation Geforce, or because of Wine. It was designed with the Gf4, 5 and
6 in mind.
I get these:
fixme:wgl:X11DRV_wglGetPixelFormatAttribivARB unsupported 2004 WGL Attribute
upon launchung the game, ranging from 2004 to 2009. The screen goes blank for a
short while before the Dialog box appears.
--
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=12563
Summary: Autocad 2008 installer crashes when trying to configure
install
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dominikowski(a)gmail.com
Created an attachment (id=12142)
--> (http://bugs.winehq.org/attachment.cgi?id=12142)
git wine Setup.exe &> winelog6.txt
Note: this is a different crash than Bug 12562 and Bug 8319 and Bug 9809.
Reproducible: always.
GIT version of WINE from a few moments ago.
Autocad 2008 (Polish, full) installation crashes. Full log attached.
Ubuntu 8.04.
Wiped .wine directory.
"sudo sysctl -w vm.mmap_min_addr=0" applied to get around bug 12516.
When I try to configure the installation (after accepting the license and such)
a screen appears that asks if NOTEPAD.exe is the notepad app, if a shortcut
should be put, I just hit Next, then there's type of license (single user,
multi user), I leave everything as it is (default), hit Next and the installer
crashes.
--
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=30752
Bug #: 30752
Summary: Open/save file dialog "New Folder" button doesn't show
new folder
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aeikum(a)codeweavers.com
Classification: Unclassified
See the description from Bug 18606, which was fixed by
0a55ec2c9e1dc5fd0b99ad1202fd7849b0187808. The bug is back again, but no test
failures show in <dlls/shell32/tests>.
Regression testing reveals:
cde4993d625decec31d25485c7a588a3b772ef8b is the first bad commit
commit cde4993d625decec31d25485c7a588a3b772ef8b
Author: Jay Yang <jkelleyy(a)gmail.com>
Date: Mon Jul 11 17:35:35 2011 -0400
shell32: Have the default shell view call SHChangeNotifyRegister with
unixfs pidls.
:040000 040000 833232977eb625754bef7c0d2f09c065574df0d9
cccb55d925c166ba3838b0179cbdd655a44ba26a M dlls
--
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=27419
Summary: Mouse problem in Heroes of Might and Magic 3
Product: Wine
Version: 1.3.21
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdar07(a)gmail.com
When I go into the castle, then fort and click on a unit picture, new window
appear in which I can decide how many of those I want to buy. I click on the
maximum button and nothing is happening. From that moment, mouse click is not
working. Moving cursor is just fine, only click makes problems.
Everything is ok on wine 1.3.5 from
http://wine.budgetdedicated.com/archive/binary/.
--
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=25486
Summary: Lego Stunt Rally: 3d scene is black
Product: Wine
Version: 1.3.9
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support.intranet(a)libero.it
In Lego Stunt Rally 1.0, both in racing and costruction mode, the 3d scene is
black, as if no textures were present. Only a few lights are displayed.
--
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=25462
Summary: Unable to break while remote debugging with VS2008
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jdluzen(a)gmail.com
I've got the Visual Studio Remote Debugger working with breakpoints,
but not with forcing the process to pause. It immediately exits with
"Trace/breakpoint trap."
http://bugs.winehq.org/show_bug.cgi?id=20534 might be related.
--
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=13515
Summary: Outcast demo: tooltips are drawn behind the window
Product: Wine
Version: 1.0-rc2
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nowic(a)wenner.ch
Created an attachment (id=13436)
--> (http://bugs.winehq.org/attachment.cgi?id=13436)
tooltip bug screenshot
When I start the demo in the 'virtual desktop' the tooltips of the
configuration menu are drawn behind the actual window. If I run the demo in
full screen mode the tooltips are drawn correctly.
Download: http://www.jeuxvideopc.com/demo/82-outcast.php
--
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=32345
Bug #: 32345
Summary: Window is not refreshed when inactive in Alien8 and
Head Over Heels
Product: Wine
Version: 1.5.18
Platform: x86-64
URL: http://retrospec.sgn.net/
OS/Version: Windows
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
This issue applies to at least two game remakes available from
http://retrospec.sgn.net/
Alien8: http://retrospec.sgn.net/game-links.php?link=alien8
Head Over Heels: http://retrospec.sgn.net/game-links.php?link=hoh
Source code is available for Alien8.
I'm testing with wine-1.5.18-114-ga61f68f, Lubuntu 11.10 x86-64, Nvidia driver
304.64.
When the game window is inactive it is no longer refreshed properly. So for
example, if you drag another window in front of the game window, the game
window fills with copies of the decorations of the window you're dragging.
Also, the game sound is supposed to stop when the window becomes inactive.
Under Wine it keeps looping.
To reproduce:
- Download and install Alien8 and/or Head Over Heels
- Run the game. Alien8 defaults to full-screen mode, so you'll need to change
that to windowed first. For Head Over Heels, press space a couple of times to
get to the main menu.
- Drag another window over the game window.
--
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=19157
Summary: CoGetContextToken and CoGetObjectContext need to take
existing MTA into account
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
since ole32.CoGetContextToken() is no longer a stub, debugging of managed code
(.NET) with cordbg/mdbg doesn't work anymore.
Main thread (tid=0009) creates MTA:
--- snip ---
...
0009:Call ole32.CoInitializeEx(00000000,00000000) ret=79ebfba8
...
0009:trace:ole:apartment_construct creating new apartment, model=0
0009:trace:ole:apartment_construct Created apartment on OXID 80000cafe
...
0009:Ret ole32.CoInitializeEx() retval=00000000 ret=79ebfba8
--- snip ---
Helper thread (tid=001f) explicitly demands MTA after CoGetContextToken()
failure:
--- snip ---
...
001f:Call ole32.CoGetContextToken(02c1e5f4) ret=79ee2b0f
...
001f:trace:ole:CoGetContextToken (0x2c1e5f4)
001f:Ret ole32.CoGetContextToken() retval=800401f0 ret=79ee2b0f
...
001f:Call ole32.CoInitializeEx(00000000,00000000) ret=79ebfba8
...
001f:trace:ole:apartment_get_or_create entering the multithreaded apartment
80000cafe
...
001f:trace:ole:apartment_addref 80000cafe: before = 1
...
--- snip ---
Another debugger helper/worker thread gets created (tid=0021) which *never*
initializes COM explicitly - unlike the other threads:
--- snip ---
...
0009:Call
KERNEL32.CreateThread(00000000,00000000,63ea71dc,00176a58,00000000,00176a68)
ret=63ea5b42
0009:Ret KERNEL32.CreateThread() retval=0000018c ret=63ea5b42
0009:Call ole32.CoCreateInstance(63ea5bfc,00000000,00000001,63ea5c0c,001768e8)
ret=63ea5bda
0009:trace:ole:CoCreateInstance (rclsid={e5cb7a31-7512-11d2-89ce-0080c792e5d8},
pUnkOuter=(nil), dwClsContext=00000001,
riid={809c652e-7396-11d2-9771-00a0c9b4d50c}, ppv=0x1768e8)
...
0021:Call ole32.CoGetContextToken(0319d730) ret=79ee2b0f
0021:trace:ole:CoGetContextToken (0x319d730)
0021:Ret ole32.CoGetContextToken() retval=800401f0 ret=79ee2b0f
...
0021:Call ole32.CoGetObjectContext(79ee2a20,00173224) ret=79f82943
...
0021:trace:ole:CoGetObjectContext ({00000000-0000-0000-c000-000000000046},
0x173224)
0021:err:ole:CoGetObjectContext apartment not initialised
0021:Ret ole32.CoGetObjectContext() retval=800401f0 ret=79f82943
...
0021:Call KERNEL32.RaiseException(e06d7363,00000001,00000003,0319d644)
ret=78158dd3
0021:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b842f46
ip=7b842f46 tid=0021
0021:trace:seh:raise_exception info[0]=19930520
0021:trace:seh:raise_exception info[1]=0319d6b8
0021:trace:seh:raise_exception info[2]=79f9acc4
0021:trace:seh:raise_exception eax=7b82ca8d ebx=7b8d1398 ecx=00000000
edx=0319d630 esi=0319d630 edi=0319d5b0
0021:trace:seh:raise_exception ebp=0319d598 esp=0319d534 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000246
...
<managed debugging hangs here>
--- snip ---
This is most likely same problem domain as bug 17902 (fixed by
http://source.winehq.org/git/wine.git/?a=commit;h=bd4975acb0b682bbf2b4934d1…
- "ole32: Use existing MTA in CoGetClassObject and CoCreateInstance")
Since the thread in question doesn't initialize COM at all, CoGetContextToken
and CoGetObjectContext most likely need to look at existing MTA(s).
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=22870
Summary: Visual Studio remote debugger msvsmon.exe does not
launch debug target
Product: Wine
Version: 1.1.44
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ninevoltz(a)metalink.net
msvsmon.exe does not work on Wine, the monitor will start and can connect with
Visual Studio's debugger, but it will not start the target program to debug. I
am attempting to debug PuTTY's Pageant program which also does not work
properly in Wine. I also tried debugging with MinGW's gdb and gdb crashes.
--
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=10601
Summary: .NET Framework 2.0: Installation Fails
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=0856eacb-4362-4b0d-8edd-aab15c5e04f5&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jmdoles(a)digitaldeviation.com
Created an attachment (id=9399)
--> (http://bugs.winehq.org/attachment.cgi?id=9399)
wine console output
The installation appears to start correctly, but it eventually causes and
unhandled exception within wine. I have installed IE6 as a prequisite.
--
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=29392
Bug #: 29392
Summary: i cant run game www.jugger.ru - will be very preciate
if you can help out
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: monteskju(a)inbox.lv
Classification: Unclassified
the program juggernautclient.exe has encountered a serious problem and needs to
close.
Exception EExternalException in module ntdll.dll at 0001F977. External
exception C0000025
this is what i see when i launch a program. if you need some more information i
will be glad to give it to you.
thx in advice
--
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=30312
Bug #: 30312
Summary: Microsoft Office Communicator 2007 R2 Trial checks for
unimplemented run mode 7 (MSIRUNMODE_REBOOTNOW)
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
Microsoft Office Communicator 2007 R2 Trial checks both states: "reboot now"
and "reboot at end" to determine if a reboot is necessary.
Nothing serious but it would be nice to handle MSIRUNMODE_REBOOTNOW
(MSIRUNMODE_REBOOTATEND is already done).
Tracking using "package->need_reboot" (MSIRUNMODE_REBOOTATEND) or at least a
more meaningful message as I had to look it up to be sure that it is harmless.
Set WinVer to >= Windows Vista due to MSXML6 (SP1) requirement.
WINEDEBUG=+tid,+seh,+relay,+msi wine msiexec -i CommunicatorEval.msi >> log.txt
2>&1
--- snip ---
...
002f:trace:msi:ACTION_CustomAction Handling custom action
L"SetFilesInUseProperty" (41 L"Custom" L"SetFilesInUseProperty")
...
003a:Ret PE DLL (proc=0x3c382c,module=0x3c0000
L"msia226.tmp",reason=THREAD_ATTACH,res=(nil)) retval=1
003a:Starting thread proc 0x7ecd1af8 (arg=0x6585b4)
003a:trace:msi:DllThread custom action (3a) started
...
003a:trace:msi:ACTION_CallDllFunction calling L"SetFilesInUseProperty"
003a:Call KERNEL32.GetEnvironmentVariableW(7ed474e0
L"MsiBreak",0062e64c,00000104) ret=7ecd13fb
003a:Ret KERNEL32.GetEnvironmentVariableW() retval=00000000 ret=7ecd13fb
003a:Call msi.MsiGetMode(00000002,00000006) ret=004058c3
003a:trace:msi:MsiGetMode 2 6
003a:trace:msi:MsiGetMode 1 6
003a:Ret msi.MsiGetMode() retval=00000000 ret=004058c3
003a:Call msi.MsiGetMode(00000002,00000007) ret=004058cf
003a:trace:msi:MsiGetMode 2 7
003a:trace:msi:MsiGetMode 1 7
003a:fixme:msi:MsiGetMode unimplemented run mode: 7
003a:Ret msi.MsiGetMode() retval=00000001 ret=004058cf
003a:Call msi.MsiSetPropertyW(00000002,00401cc8 L"REBOOTSCHEDULED",00401588
L"1") ret=004058e3
...
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370125%28v=vs.85%…
Source:
http://source.winehq.org/git/wine.git/blob/9336c10619075d26dc8e6da5b0fb50bc…
--- snip ---
695 BOOL WINAPI MsiGetMode(MSIHANDLE hInstall, MSIRUNMODE iRunMode)
696 {
...
763 case MSIRUNMODE_REBOOTATEND:
764 r = package->need_reboot;
765 break;
766
767 case MSIRUNMODE_LOGENABLED:
768 r = (package->log_file != INVALID_HANDLE_VALUE);
769 break;
770
771 default:
772 FIXME("unimplemented run mode: %d\n", iRunMode);
773 r = TRUE;
774 }
775
776 msiobj_release( &package->hdr );
777 return r;
778 }
--- snip ---
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=30513
Bug #: 30513
Summary: Microsoft Office Communicator 2007 R2 Trial crashes in
CDATA event handling while parsing rule XML from
resource file
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Created attachment 39910
--> http://bugs.winehq.org/attachment.cgi?id=39910
WINEDEBUG=+tid,+seh,+relay,+msxml wine ./communicator.exe >>log.txt 2>&1
Hello,
continuation of bug 30505
Prerequisite: 'winetricks vcrun2008'
After installation (one liner):
--- snip ---
$ wine reg add "HKLM\\Software\\Microsoft\\Communicator\\3.5\\Registration" /v
"ProductID" /t "REG_SZ" /d "01234567890123456789012"
--- snip ---
Attached is WINEDEBUG=+tid,+seh,+relay,+msxml log (uncompressed: 10 MiB).
$ du -sh CommunicatorEval.msi
15M CommunicatorEval.msi
$ sha1sum CommunicatorEval.msi
b2a1cc95362b93aef6dfbf9987cc5c4ca6c8038d CommunicatorEval.msi
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=28585
Bug #: 28585
Summary: MS SQL server express 2008 install fails
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dpobanz(a)gmail.com
Classification: Unclassified
During installation of MS SQL server express 2008 wine crashes.
wine-1.3.29-198-gfc2dcd0
The last few lines from the console are:
...
wine: Call from 0x7b839d62 to unimplemented function
mspatcha.dll.GetFilePatchSignatureA, aborting
wine: Unimplemented function mspatcha.dll.GetFilePatchSignatureA called at
address 0x7b839d62 (thread 0009), starting debugger...
--
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=27017
Summary: AutoCAD 2008: Installation of service pack fails.
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
CC: david.hedberg(a)gmail.com
Created an attachment (id=34450)
--> (http://bugs.winehq.org/attachment.cgi?id=34450)
Terminal output on wine-1.3.19-49-g92e05ed
Steps to reproduce:
1) remove ~/.wine
2) winetricks dotnet20 tahoma vcrun2003
3) install AutoCAD
4) wine autocad2008lockedsp1.exe
Behaviour:
"A problem prevented the Service Pack from being installed. Contact your system
administrator. Error Code: 1603"
Expected behaviour:
No error.
This is regression and I think commit 21085edb51fdbab4b256ecb96c0d2849263fac2a
is responsible.
--
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=28540
Bug #: 28540
Summary: Adobe Reader X fails to install
Product: Wine
Version: 1.3.29
Platform: x86-64
URL: http://ardownload.adobe.com/pub/adobe/reader/win/10.x/
10.0.1/en_US/AdbeRdr1001_en_US.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
CC: hans(a)meelstraat.net
Classification: Unclassified
Regression SHA1: 6083fd5e530c34e17b125f00d7777177984d8b1a
Created attachment 36639
--> http://bugs.winehq.org/attachment.cgi?id=36639
wine-1.3.29-121-gfdda702 console output
Adobe Reader X fails to install. This is a regression.
6083fd5e530c34e17b125f00d7777177984d8b1a is the first bad commit
commit 6083fd5e530c34e17b125f00d7777177984d8b1a
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Thu Jul 7 09:22:48 2011 +0200
msi: Check the transform language against the package language instead of
the system language.
:040000 040000 00e1503368a774a1b19e6eee21bf959d2ff2154b
a39a28ec2b86f5a98e4b9d719db1fbe22c493d90 M dlls
Reverting this commit fixes the problem.
--
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=20421
Summary: Return to Mysterious Island doesn't start
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thezood(a)gmail.com
Created an attachment (id=24240)
--> (http://bugs.winehq.org/attachment.cgi?id=24240)
Terminal output
The game Return to Mysterious Island (demo) doesn't start, just crashes. I've
tried both wine 1.1.31 and 1.0.1. This is supposedly a regression since it has
been known to work (according to AppDB) but was discovered to be broken some
time last year.
--
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=13277
Summary: Return to Mysterious Island crashes
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://download19.gamershell.com/cgi-
bin/fhx.pl?auth=a1ktbHC%2FAIL22&id=7332&ts=1211019002&ca
t=demo&filename=RtMIDemo-US.zip
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Created an attachment (id=13126)
--> (http://bugs.winehq.org/attachment.cgi?id=13126)
minimal patch to fix the crash
As reported on wine-users list this game ran fine in wine-09.58, but now just
crashes. The patch that broke the app appeared to be
http://www.winehq.org/pipermail/wine-cvs/2008-April/043077.html
Attached is a minimal patch that makes the game start fine again but i haven't
got a clue of it's correct ;)
--
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=26310
Summary: Return to Mysterious Island: mouse behaves erratically
in the menus
Product: Wine
Version: 1.3.15
Platform: x86
URL: http://www.gamershell.com/download_7332.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: julliard(a)winehq.org
Created an attachment (id=33537)
--> (http://bugs.winehq.org/attachment.cgi?id=33537)
terminal output
This bug affects several, if not all adventure games from the developer Kheops
Studio.
Symptom: After starting the game the main menu appears but the mouse pointer
seems to be stuck: it won't move. If you move your mouse constantly the mouse
pointer begins to move after a couple of seconds. As soon as you stop moving
your mouse, the pointer is stuck again and it takes several seconds to catch up
again with the actual mouse movement.
Once you manage to get into the game the mouse pointer behaves correctly (it
moves continuously)... until you press the right-mouse button to bring up the
inventory screen: the mouse pointer behaves the same way as in the main menu.
f46bd50a806e3d3707bab3ed3649e107adca3630 is the first bad commit
commit f46bd50a806e3d3707bab3ed3649e107adca3630
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Mar 2 16:28:23 2011 +0100
winex11: Get rid of the ClipCursor and SendInput entry points.
The commit cannot be reverted cleanly on Wine-1.3.15,
git checkout f46bd50a806e3d3707bab3ed3649e107adca3630 >>the issue is present
git reset --hard HEAD^ >>restores the original behaviour (the mouse pointer
is moving solidly although it is slow as reported in bug #20947).
--
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=11736
Summary: Return to Mysterious Island crashes on startup
sometimes.
Product: Wine
Version: 0.9.56.
Platform: PC
URL: http://www.gamershell.com/download_7332.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bmd_1985(a)hotmail.com
Created an attachment (id=10985)
--> (http://bugs.winehq.org/attachment.cgi?id=10985)
wine log
Return to Mysterious Island crashes on startup before it gets to the logo,
basically reolution changes and thats as far as it gets before crashing. The
interesting thing is that this dose not always happen, often it runs normally
as it has in pervious versions of wine.
--
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=22719
Summary: Tivibu custom window management buttons are
incorrectly placed in upper left-hand corner
Product: Wine
Version: 1.1.44
Platform: x86
URL: http://www.tivibu.com.tr/downloads/Tivibu.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Following up on bug 22713, when the Tivibu client is launched, the custom-drawn
window management buttons of Tivibu are all placed in roughly the same spot in
the upper left-hand corner, rather than in their proper positions in the upper
right-hand corner of the window, as shown in attachment 28008. Relevant output
is in attachment 28009.
--
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=30165
Bug #: 30165
Summary: Pegasus Mail v4.63 CRASH -Unhandled exception: page
fault on read access to 0xdddddde5 in 32-bit code
(0x00588fa6)
Product: Wine
Version: 1.4-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccarthy(a)volny.cz
Classification: Unclassified
Created attachment 39361
--> http://bugs.winehq.org/attachment.cgi?id=39361
post mortem dump
Pegasus Mail 4.63 build 325 w/ IERenderer 2.4.7.2
pmail: http://download-us.pmail.com/w32-463.exe
Wine 1.4-rc6
see attached backtrace for more info
--
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=30090
Bug #: 30090
Summary: Pegasus Mail v4.63 build 325 starts w/ exception
(0x80004001) (0x80004001) @01AE3610
Product: Wine
Version: 1.4-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ieframe
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccarthy(a)volny.cz
Classification: Unclassified
Created attachment 39210
--> http://bugs.winehq.org/attachment.cgi?id=39210
debug dump
Pegasus Mail 4.63 build 325 w/ IERenderer 2.4.7.2
pmail: http://download-us.pmail.com/w32-463.exe
Wine 1.4-rc6
The package generates the following exceptions in safecall methods at start up:
(0x80004001) (0x80004001) @01AE3610
(0x80040100) (0x80040100) @01AD84F5
--
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=29115
Bug #: 29115
Summary: Pegasus Mail v. 4.62 build 191 generates exception in
safecall method
Product: Wine
Version: 0.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccarthy(a)volny.cz
Classification: Unclassified
when starting Pegasus Mail, the window winpm-39 displays the following message:
"exception in safecall method" followed by another window with a code
"(0x80004001) @01F32D54
--
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=26344
Summary: Older Demo of the Protel f/Windows v.2.5 doesn't start
at all.
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brodo(a)o2.pl
Older Demo of the Protel f/Windows v.2.5 doesn't start at all.
Some Wine versions ago (I do not remember exactly) there wasn't any problem at
all with this Protel Demo version.
--
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=13370
Summary: DVD Shrink: Random crashes
Product: Wine
Version: 1.0-rc1
Platform: PC
URL: http://www.dvdshrink.org/what_en.php
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=13264)
--> (http://bugs.winehq.org/attachment.cgi?id=13264)
backtrace in git
I'm getting random crashes in DVD Shrink when using the program. No specific
recipe to reproduce though...
--
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=16481
Summary: sShortDate ignored by wine
Product: Wine
Version: 1.1.10
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: singularita(a)gmail.com
If I change short date format both in .wine/user.reg (in [Control
Panel\International] section) and win.ini (in section [intl], the file is in
"Windows" directory created by wine)
In both cases, sShortDate is modified from default "M/d/yyyy" to "dd.MM.yyyy"
then when I run Unicode FAR (opensource version,
http://farmanager.com/opensource.php), the dateformat I see is default
"M/d/yyyy"
On Windows it worked, FAR respected custom date format settings set in
registry. In WINE the settings get ignored (and later overwritten by default
"M/d/yyyy"). The locale in rest of ther config is US english (00000409)
I killed all wine-related processes before doing the config-file editing, so
problem is not with running wine process overwriting my configs...
--
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=16400
Summary: Australian etax help feature does not work
Product: Wine
Version: unspecified
Platform: All
URL: http://ato.gov.au/content/downloads/etax2008/etax2008_1.
exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jens(a)porup.com
Pursuant to bug 14560.
The help feature of the Australian etax program no longer segfaults, but merely
present a blank screen.
--
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=19279
Summary: Roller Coaster Tycoon 2 will not run without
Window/Desktop emulation mode
Product: Wine
Version: 1.1.25
Platform: Macintosh
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dave1g(a)satx.rr.com
+++ This bug was initially created as a clone of Bug #19278 +++
after installing the NO-CD patch from gameburnworld.com
$ wine rct2.exe
fixme:win:EnumDisplayDevicesW ((null),0,0x32f808,0x00000000), stub!
(only a white box artifact was seen in the top left corner of the screen)
running winecfg and turning on desktop emulation mode allows the program to
run just fine though various warnings are printed to the console, nothing was
noticably wrong in the game.
(run winecfg and do your business)
$ winecfg
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:ntdll:server_ioctl_file Unsupported ioctl 24000 (device=2 access=1 func=0
method=0)
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
(now run the game)
$ wine rct2.exe
fixme:win:EnumDisplayDevicesW ((null),0,0x32f808,0x00000000), stub!
fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to
8
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
fixme:wave:wodDsCreate DirectSound not implemented
fixme:wave:wodDsCreate The (slower) DirectSound HEL mode will be used instead.
--
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=28177
Summary: Return to Mysterious Island 2 crashes after starting
Product: Wine
Version: 1.3.26
Platform: x86
URL: http://www.fileplanet.com/201531/200000/fileinfo/Retur
n-to-Mysterious-Island-2---Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=36098)
--> (http://bugs.winehq.org/attachment.cgi?id=36098)
terminal output
The game crashes shortly after starting, without displaying anything.
After changing orm to backbuffer, the game doesn't crash but it hangs and the
terminal output ends with:
fixme:d3d:IWineD3DBaseSwapChainImpl_GetRasterStatus iface 0x15d740,
raster_status 0x32e4e4 stub!
I also noticed that at least the first intro video (company logo) was playing
correctly in Wine-1.2.3 but the game hung afterwards (only with orm=backbuffer;
with orm=fbo the game always produced the same crash as it does in the current
git version). Since Wine-1.3.0 the game hangs (without showing anything) when
orm=backbuffer.
The problem can be reproduced in the demo, too.
Fedora 15 x86
Nvidia gfx card / driver 280.13
--
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=29599
Bug #: 29599
Summary: eRacer demo: screen too dark
Product: Wine
Version: 1.3.37
Platform: x86
URL: http://www.fileplanet.com/60483/60000/fileinfo/eRacer-
Online-Demo
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 38348
--> http://bugs.winehq.org/attachment.cgi?id=38348
+xvidmode log
The screen is so much dark in eRacer that you can hardly see anything.
This bug affects Eurofighter Typhoon too (from the same developer: Rage
Software).
The screen stays dark after exiting the game and I have to restore the original
gamma of the screen by 'xgamma -gamma 1.0'.
I tried to take screenshots of the problem, but interestingly, the brightness
of the screenshots is correct, and every detail on the screenshots is visible.
Steps to reproduce the problem with the demo:
1. Install the demo as usual.
2. Remove/rename intro.avi from eRacer/Gui/Avi. Start the game by eracer.exe.
3. Text is missing from the game (bug #29598). In the menu press the down arrow
once, so the 2nd option is selected and press <Enter>, then press <Enter> again
on the next screen. The race should be started. In mid-game you can notice that
most of the textures (the environment) are so dark that you can barely see
anything.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.3
--
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=19969
Summary: 2weistein + ElDorado: y and z switched with German
keyboard/locale
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
I'm using the German version of both apps below, with LANG=de_DE.UTF-8 typical
of a German locale and a German keyboard with Ubuntu Intrepid. One
particularity of the German keyboard is that Y and Z are switched.
2weistein is entirely driven by mouse except in the savegame dialog. There, z
and y are switched (as if I were using a US keyboard) when entering the file
name.
El Dorado (German localised version) uses the y key to run. I must press the z
key (between t and u) instead (in both the configuration menu and during game
play).
The bug about 2weistein also occurs with MacOS X.5.7, XQuartz 2.3.3.2 and
Apple's German keyboard.
Many other apps work fine.
I thought Wine had code to sort-of revert the locale-dependent keyboard mapping
(like dosbox). 2weistein is surprising, since one would not expect it to use
low-level scancodes or similar in basically a file requester -- and it
originates from Germany, so it undoubtfully works well in a German MS-Windows.
Maybe the default code page selection does not work correctly? I also own a
very old French title ("Kiyeko et les voleurs de nuit"; it says "win3.1
minimum") that supports 5 European languages and starts in English even with
LANG=fr_... (the French locale files are installed on the Ubuntu system). I
wrote no bug report so far because I couldn't test yet how it starts in
MS-Windows.
--
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=30755
Bug #: 30755
Summary: gdiplus tests fail if stix fonts present
Product: Wine
Version: 1.5.4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
On Centos 6, "make test" causes (among others) the failures
runtest -q -P wine -M gdiplus.dll -T ../../.. -p gdiplus_test.exe.so
~/wine-git/dlls/gdiplus/tests/font.c && touch font.ok
...
font.c:396: Test failed: Expected 0, got 3
font.c:397: Test failed: got NULL font collection
make[1]: *** [font.ok] Error 2
/home/dank/wine-git/tools/runtest -q -P wine -M gdiplus.dll -T ../../.. -p
gdiplus_test.exe.so /home/dank/wine-git/dlls/gdiplus/tests/graphics.c && touch
graphics.ok
...
graphics.c:1978: Test failed: Expected 00000000, got 00000010
Unhandled exception: page fault on read access to 0x00000048 in 32-bit code
(0x6834d776).
Backtrace:
=>0 0x6834d776 get_log_fontW+0x16() in gdiplus (0x0032f8c8)
1 0x68358d57 get_font_hfont+0xf6() in gdiplus (0x0032f9f8)
2 0x6835d1cd GdipDrawString+0x26c() in gdiplus (0x0032fb78)
3 0x71cb8763 test_GdipDrawString+0x232() in gdiplus_test (0x0032fc38)
4 0x71cc5c45 func_graphics+0xb84() in gdiplus_test (0x0032fd18)
...
Looks like
GdipNewInstalledFontCollection() which calls
EnumFontFamiliesExW() which calls
add_font_proc() which calls
GdipCreateFontFamilyFromName()
and is failing because the latter function somehow chokes on the stix fonts
(http://stixfonts.org) bundled with centos 6.
Doing
sudo chmod 000 /usr/share/fonts/stix
works around the problem.
--
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=30957
Bug #: 30957
Summary: Unhandled exception: page fault on read access to
0xffffffff in segmented 32-bit code
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chiszp(a)hotmail.com
Classification: Unclassified
Created attachment 40618
--> http://bugs.winehq.org/attachment.cgi?id=40618
backtrace, log
I'm attempting to install Protel Advanced Schematic v3.0 (old software, viewing
setup.exe in a hex editor see references to a Borland installer).
Running 'wine setup.exe' crashes after clicking 'Full Install'. Log included in
attachment as requested.
Disassembling at the crash location 0x1027:0x0508, the instruction appears to
be:
testl 0xffffffff,%fs:0x200
but the crash suggests wine is attempting to read from address 0xffffffff,
rather than treating it as a literal value (a signed -1).
--
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=27800
Summary: NFS U1: Incorrect name of the game controller (wheel)
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
I was asked by Lucas Fialho Zawacki to make some comparison of my wheel between
WinXP and Wine. I took Need for Speed Underground 1 for the tests:
Options -> Controller -> Controller Setup -> "2nd column":
WinXP says: "Wheel"
Wine says: "Joypad"
Tested with:
* wheel "Logitech Wingman Formula Force GP"
* wine-1.3.24-174-g4b4dd30.
--
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=24079
Summary: VSphere Client 4.1: Unable to connect to server
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://vsphereclient.vmware.com/vsphereclient/2/5/8/9/
0/2/VMware-viclient-all-4.1.0-258902.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vince(a)marsters.co.uk
Created an attachment (id=30288)
--> (http://bugs.winehq.org/attachment.cgi?id=30288)
output log when run from a command line
Once installed and dotnet30 installed using winetricks the application runs but
when you enter the server IP, username and password of the ESXi server and
click login there is a connecting message which eventually changes 'Connection
Failed' along with a popup "vSphere Client could not connect to 'server ip' The
server took too long to respond (The operation has timed out)"
--
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=12664
Summary: Game Craft after selecting Pilot
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=11224
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kur1g3n(a)hotmail.com
Created an attachment (id=12321)
--> (http://bugs.winehq.org/attachment.cgi?id=12321)
Log of what says wine all the way from launcher to game crash
Once in game, we can choose the pilot we want to play, after selecting it, the
game begins loading, and it crashes during loading (or at end ?)
--
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=22726
Summary: CodeGear RAD Studio 2007/2009 installation errors:
column 3/4 out of range, missing column in table
L"Property"
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.codegear.com/products/radstudio
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine-bug(a)gigawatt.nl
CC: dank(a)kegel.com, liquitsnake(a)gmx.net
+++ This bug was initially created as a clone of Bug #13042 +++
The installer of CodeGear RAD Studio 2007 and 2009 fails as reported in #13042.
That bug contains a patch which fixes this problem, and allows the installation
to continue. However, later on, it still fails:
err:msidb:get_tablecolumns column 3 out of range
err:msidb:get_tablecolumns column 4 out of range
err:msidb:get_tablecolumns missing column in table L"Property"
I have reported this as a new bug because at first sight this looks completely
unrelated, but if that was wrong, this can be closed as a duplicate.
The steps I have taken to see this problem:
- Start with a clean config
- Set mode to Windows 2000
- Install MDAC 2.8 SP1
- Set mode back to Windows XP
- Make the RAD Studio (2007 or 2009) installation disc available as D:\
- Run D:\Install\Setup.exe
- Click "Retry" once during the automatic .NET Framework installation
- Choose your selection, same problem with everything except for the first
option (CodeGear RAD Studio) deselected, as with everything selected
- Proceed with the installation
It finishes unpacking, and I find the unpacked files as, for example,
.wine/drive_c/users/Public/Application
Data/{B278BA8C-C407-4742-B58E-CE34D8C8A15B}/corey/B1A48A5A/39948DF1/bds.exe
and those files look correct, or at least the text files that I could check do.
However, then it hangs. The installer says "Windows Installer", on the console
I see error messages (look up), and the only action I can take is to click
"Cancel", which also doesn't actually work.
I am using Wine 1.1.44, as reported by wine --version. I do not know what more
information you need, but I will be happy to answer any questions.
--
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=29030
Bug #: 29030
Summary: Lego Universe installer looks terrible
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
See attachments (inc)
--
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=29934
Bug #: 29934
Summary: Weird Worlds: Launcher no longer launches the game
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: samurai_no_densetsu(a)yahoo.es
Classification: Unclassified
Weird Worlds's launcher no longer works as expected. Since this is a
regression, I did a regression test but it was unsuccessful.
The launcher works fine from wine-1.0 to wine-1.3.25, including the stable
version wine-1.2.3. So I tried to bisect 1.3.25 against 1.4-rc4.
When I was doing the bisection learned that between wine-1.3.27 and wine-1.3.33
(both included) the launcher didn't even appear, and manually had to skip all
that range, and within wine-1.3.34 to wine-1.4-rc4 the menu launcher is there
but no longer launches the game. Can't provide a regression id as the issue
clearly raised between wine-1.3.27 and wine-1.3.33, versions in which the
launcher does not start so is virtually impossible to test.
Didn't noticed earlier as the game can be launched from scripts or commandline
this way: wine weird.exe -skiplauncher -game default
Luckyly there's a demo showing the same behaviour here:
http://www.shrapnelgames.com/Demos/DD_WW_win.html
I wish I could add more info, but that's all I have right now.
--
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=32845
Bug #: 32845
Summary: Installing Cisco CSM 4.2 in Ubuntu x64 fails (32bit
works)
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lordmael(a)gmail.com
Classification: Unclassified
Created attachment 43377
--> http://bugs.winehq.org/attachment.cgi?id=43377
Backtrace from the wine error log.
Installing Cisco Security Manager (CSM) 4.2 on ubuntu 64bit fails but when
installing it in 32bit ubuntu it installs and runs fine.
I followed the directions to install the replacement advpack.dll and update it
in the wine libraries as well as installing java in the wine environment prior
to installing CSM.
Running ubuntu 12.10 x64 with wine 1.4.1 (perhaps I need to update)
Willing to help out as much as needed :)
--
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=32385
Bug #: 32385
Summary: MSTSC (Remote Desktop) drawing issues
Product: Wine
Version: 1.5.18
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kenjiru.ro(a)gmail.com
Classification: Unclassified
Created attachment 42734
--> http://bugs.winehq.org/attachment.cgi?id=42734
Drawing issues.
When it works, it has some drawing issues. Some windows are not drawn correctly
at all, the title bars of some windows are not drawn.
I see a lot of messages in the console, but I don't know which ones are to
blame.
I've attached the console output.
--
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=29503
Bug #: 29503
Summary: Stucuk's Setup System patcher often fails with 'Canvas
does not allow drawing' error message
Product: Wine
Version: 1.3.36
Platform: x86
URL: http://www.fileplanet.com/207230/200000/fileinfo/Dark-
Horizon-Patch-v1.0.6.1
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 38206
--> http://bugs.winehq.org/attachment.cgi?id=38206
screenshot (patcher running in virtual desktop)
The installer of the patch made for Dark Horizon uses a Stucuk's Setup System
according to the file properties. The installer of the community patch made for
Original War also uses this kind of patcher, sharing the same problem.
The patcher for Dark Horizon consists of nearly 3000 small files. The
installation process doesn't take long (15-20 seconds). At some point during
the install process, the patcher is interrupted with an error message:
'Setup Thread Error: Canvas does not allow drawing', and the installer quits
prematurely.
This happens fairly often (maybe 8 times out of 10 attempts), but sometimes the
patcher finishes the job without erroring out.
Before the error message pops up, text which normally appears inside the
installer window also printed and overwritten several hundreds of times in the
upper left corner of the screen (see attached screenshot). This happens both in
virtual desktop mode and in full-screen.
To reproduce the problem with the patcher made for Dark Horizon you don't have
to download the demo for the game; the patch can be installed alone in a
selected directory anywhere inside a wineprefix.
--
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=26898
Summary: wine does not show save game screenshots
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vaniaz(a)msn.com
Screenshots are saved in dds format. When saving game, I get the following in
console
fixme:d3d_surface:surface_convert_format Cannot find a conversion function from
format WINED3DFMT_B8G8R8A8_UNORM to WINED3DFMT_DXT1.
Saved screenshot is completely black.
--
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=33309
Bug #: 33309
Summary: No keyboard input in Slender: The Arrival
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 6tsukiyami9(a)gmail.com
Classification: Unclassified
The title says all about it: the keyboard doesn't work at all in Slender: The
Arrival. I can't even try the game itself because I can't get enter the license
key and get to the main menu.
I guess this may be a clue:
fixme:win:RegisterRawInputDevices Unhandled flags 0x100 for device 0.
fixme:win:RegisterDeviceNotificationW (hwnd=0x1006a,
filter=0x33fc6c,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterRawInputDevices Unhandled flags 0x100 for device 0.
I'm attaching a full log with WINEDEBUG=-all,+keyboard,+key,+dinput,+message
--
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=30096
Bug #: 30096
Summary: Setting path doesn't work in Shelltreeview
Product: Wine
Version: 1.4-rc6
Platform: x86
URL: http://netikka.net/dev/shelltreeview.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
Delphi has TShelltreeview component.
When trying to set path, for example:
shelltreeview1.path:='C:\Windows';
-> It sets empty path. Root is set to rfMyComputer.
Small sample to reproduce: http://netikka.net/dev/shelltreeview.exe
--
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=21934
Summary: Windows Installer CleanUp Utility does not run
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Downloading the Windows Installer CleanUp Utility for the msizap functionality,
to clean "windows/installer" as per
http://www.theexperienceblog.com/2009/05/16/how-to-clean-out-windowsinstall…
etc.
Running it gives:
Error creating process <wscript StartMsi.vbs>. Reason: File not found
in a pop-up
There is no terminal output when it is run from there.
--
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=30558
Bug #: 30558
Summary: Multiple app installers fail on missing
Session.FeatureRequestState property
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
extracted from bug 5928 to be tracked separately.
Several InstallShield based installers using active script engine can't find
Session.FeatureRequestState property:
--- snip ---
0033:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\vbscript.dll" at 0xf71b0000: builtin
0033:trace:vbscript:DllMain (0xf71b0000 1 (nil))
0033:trace:vbscript:DllGetClassObject (CLSID_VBScript
{00000001-0000-0000-c000-000000000046} 0x86e87c)
0033:trace:vbscript:ClassFactory_QueryInterface
(0xf71dd8ac)->(IID_IClassFactory 0x86e87c)
0033:trace:vbscript:ClassFactory_AddRef (0xf71dd8ac)
0033:trace:vbscript:VBScriptFactory_CreateInstance ((nil)
{bb1a2ae1-a4f9-11cf-8f20-00805f2cd064} 0x86e934)
0033:trace:vbscript:VBScript_QueryInterface (0x9cd010)->(IID_IActiveScript
0x86e934)
0033:trace:vbscript:VBScript_AddRef (0x9cd010) ref=2
0033:trace:vbscript:VBScript_Release (0x9cd010) ref=1
0033:trace:vbscript:ClassFactory_Release (0xf71dd8ac)
0033:trace:vbscript:VBScript_QueryInterface (0x9cd010)->(IID_IActiveScriptParse
0x86e930)
0033:trace:vbscript:VBScript_AddRef (0x9cd010) ref=2
0033:trace:vbscript:VBScript_SetScriptSite (0x9cd010)->(0x9c5240)
0033:trace:vbscript:VBScriptParse_InitNew (0x9cd010)
0033:trace:vbscript:VBScript_AddNamedItem (0x9cd010)->(L"Session" 2)
0033:trace:vbscript:VBScriptParse_ParseScriptText (0x9cd010)->(L"Dim
installTimeless, installMSDE, upgradeMSDE\nDim netVersion \n\ninstallTimeless =
FeatureRequestState(\"Timeless\")\ninstallMSDE =
FeatureRequestState(\"TimelessMSDE\")\nupgradeMSDE =
FeatureRequestState(\"UpgradeMSDE\")\nnetVersion =
Property(\"MsiNetAssemblySupport\") \n\nProperty(\"TTE_Features"... (null)
(nil) (null) 0 0 0 (nil) (nil))
0033:trace:vbscript:VBScript_SetScriptState (0x9cd010)->(2)
0033:trace:vbscript:DispatchEx_AddRef (0x9cd138) ref=2
0033:trace:vbscript:interp_string
0033:trace:vbscript:interp_icall
0033:fixme:vbscript:do_icall L"FeatureRequestState" not found
0033:warn:vbscript:exec_script Failed 80020006
0033:trace:vbscript:DispatchEx_Release (0x9cd138) ref=1
0033:trace:vbscript:VBScript_Release (0x9cd010) ref=1
--- snip ---
The script snippet (extracted from .msi):
--- snip ---
Dim installTimeless, installMSDE, upgradeMSDE
Dim netVersion
installTimeless = FeatureRequestState("Timeless")
installMSDE = FeatureRequestState("TimelessMSDE")
upgradeMSDE = FeatureRequestState("UpgradeMSDE")
netVersion = Property("MsiNetAssemblySupport")
Property("TTE_FeaturesValid") = "1"
if installTimeless = "3" OR installMSDE = "3" OR upgradeMSDE = "3" then
'MsgBox netVersion, 48, "netVersion"
if netVersion < "2.0.50727" then
MsgBox "Some of the selected components require .Net Framework 2.0.
Please use Windows Update or restart the installation to install it.", 48,
Property("ProductName")
Property("TTE_FeaturesValid") = "X"
' rval = MsgBox("The selected components require .Net Framework 2.0.
Would you like to download and install it?", 36, Property("ProductName") )
' if rval <> 6 then
' Property("TTE_FeaturesValid") = "0"
' end if
end if
End if
Dim installTimeless
Dim createDatabase, upgradeDatabase, createAccessDatabase,
upgradeAccessDatabase
Dim selectedCount
Dim rval
installTimeless = FeatureRequestState("Timeless")
createDatabase = FeatureRequestState("CreateDatabase")
upgradeDatabase = FeatureRequestState("UpgradeDatabase")
createAccessDatabase = FeatureRequestState("CreateAccessDatabase")
upgradeAccessDatabase = FeatureRequestState("UpgradeAccessDatabase")
'MsgBox installTimelessWeb, 48, "TimelessWeb"
'MsgBox createDatabase, 48, "CreateDatabase"
'MsgBox upgradeDatabase, 48,"UpgradeDatabase"
Property("TTE_FeaturesValid") = "1"
if Property("TTE_FeaturesValid") = "1" then
selectedCount = 0
if createDatabase = "3" then
selectedCount = selectedCount + 1
end if
if upgradeDatabase = "3" then
selectedCount = selectedCount + 1
end if
if createAccessDatabase = "3" then
selectedCount = selectedCount + 1
end if
if upgradeAccessDatabase = "3" then
selectedCount = selectedCount + 1
end if
if selectedCount > 1 then
Property("TTE_FeaturesValid") = "0"
MsgBox "Only one of Create SQL Server Database, Create Access Database,
Upgrade SQL Server Database or Upgrade Access Database may be selected.", 48,
Property("ProductName")
end if
end if
'MsgBox Property("TTE_FeaturesValid"), 48,"TTE_FeaturesValid"
BrowseForFolderdim filesys, newdatabase
dim exists
Property("TTE_FeaturesValid") = "1"
newdatabase = Property("CREATEACCESSPATH") & "\Timeless.tmd3"
Set filesys = CreateObject("Scripting.FileSystemObject")
exists = filesys.FileExists(newdatabase)
'MsgBox exists, 48, "exists"
If exists Then
MsgBox "There is already a database at " & newdatabase & ". Select a new
location.", 48, Property("ProductName")
Property("TTE_FeaturesValid") = "0"
End If
Set filesys = nothing
--- snip ---
$ sha1sum TimelessTimeAndExpenseWindowsSetup.exe
860dacc4eb48494e5870a4b32eab8bc5e087f307
TimelessTimeAndExpenseWindowsSetup.exe
$ wine --version
wine-1.5.3
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=30524
Bug #: 30524
Summary: Weather bug fails to detect vbscript (Property flag 1
not implemented)
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
See bug 28999
fixme:msi:AutomationObject_Invoke Method 2, L"Property" wflags 1 not
implemented, clsid {000c109e-0000-0000-c000-000000000046}
--
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=28999
Bug #: 28999
Summary: Weatherbug fails to detect vbscript
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
fixme:urlmon:IsValidURL ((nil),
L"http://apnmedia.ask.com/media/toolbar/stub/1.0.0.0/ApnIC.dll?tb=WBV5&versio…",
0): stub
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),1,3,(nil),0,(nil)) - stub!
fixme:qmgr:BITS_IBackgroundCopyJob_AddFile Check for valid filenames and
supported protocols
fixme:qmgr:BITS_IBackgroundCopyJob_SetPriority (0x2a3f0,0x00000000) stub
fixme:qmgr:BITS_IBackgroundCopyJob_SetNoProgressTimeout 6
fixme:wininet:InternetLockRequestFile STUB
fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT
(10000): STUB
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (2000):
STUB
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:vbscript:parse_script parser failed on parsing
L"(\"VbScriptRunning\")=\"1\""
err:msi:ITERATE_Actions Execution halted, action
L"VbScriptNotInstalledTermination" returned 1603
--
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=32755
Bug #: 32755
Summary: putty_arm for jailbroken WinRT needs
KERNEL32.dll.InitOnceExecuteOnce
Product: Wine
Version: 1.5.21
Platform: arm
URL: http://www.shinysurface.com/downloads/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
CC: focht(a)gmx.net, madewokherd(a)gmail.com, nerv(a)dawncrow.de
Depends on: 31308, 32743
Classification: Unclassified
md5sum:
e42d506b08da7d9038315fba40f6c8dc putty_arm.exe
--
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=32743
Bug #: 32743
Summary: putty_arm for jailbroken WinRT needs
KERNEL32.dll.GetCurrentPackageId
Product: Wine
Version: 1.5.21
Platform: arm
URL: http://www.shinysurface.com/downloads/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
CC: focht(a)gmx.net, nerv(a)dawncrow.de
Classification: Unclassified
md5sum:
e42d506b08da7d9038315fba40f6c8dc putty_arm.exe
Unhandled exception: unimplemented function KERNEL32.dll.GetCurrentPackageId
called in 32-bit code (0xb6c8bf00).
--
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=32768
Bug #: 32768
Summary: OpenTTD port to WinRT/WoA needs
KERNEL32.dll.HeapSummary
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the Open-source clone of Transport Tycoon Deluxe (transportation simulation
game) installer for WinRT/WoA needs this:
--- snip ---
~/wine-apps/openttd$ wine ./OpenTTDInstaller.exe
wine: Call from 0x40434204 to unimplemented function KERNEL32.dll.HeapSummary,
aborting
wine: Unimplemented function KERNEL32.dll.HeapSummary called at address
0x40434204 (thread 0009), starting debugger...
--- snip ---
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=32770
Bug #: 32770
Summary: OpenTTD port to WinRT/WoA needs
KERNEL32.dll.RegisterWaitForInputIdle
Product: Wine
Version: 1.5.22
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the Open-source clone of Transport Tycoon Deluxe (transportation simulation
game) installer for WinRT/WoA needs this:
--- snip ---
~/wine-apps/openttd$ wine ./OpenTTDInstaller.exe
...
wine: Call from 0x40394204 to unimplemented function
KERNEL32.dll.RegisterWaitForInputIdle, aborting
wine: Unimplemented function KERNEL32.dll.RegisterWaitForInputIdle called at
address 0x40394204 (thread 0009), starting debugger...
Unhandled exception: unimplemented function
KERNEL32.dll.RegisterWaitForInputIdle called in 32-bit code (0x40394204).
Register dump:
ARM User Mode
Pc:40394204 Sp:40d4fcd8 Lr:40394204 Cpsr:400f0010(-Z--)
r0:40d4fce4 r1:40d4fdb0 r2:0000 r3:40d4fce4
r4:415db4 r5:bb40e64e r6:8889 r7:0000 r8:0000
r9:0000 r10:40089000 Fp:40d4fd34 Ip:40aca398
Stack dump:
...
Backtrace:
=>0 0x40394204 RtlRaiseException+0x1c(rec=0x40d4fd48)
[/home/linaro/wine/wine-git/dlls/ntdll/signal_arm.c:929] in ntdll (0x40d4fd34)
1 0x40394204 RtlRaiseException+0x1b(rec=0x80000100)
[/home/linaro/wine/wine-git/dlls/ntdll/signal_arm.c:928] in ntdll (0x40d4fd9c)
2 0x40a46910 RaiseException+0xbb(code=0x40aa0388, flags=0x2,
nbargs=0x40394204, args=0x0(nil))
[/home/linaro/wine/wine-git/dlls/kernel32/except.c:84] in kernel32 (0x40d4fdb4)
3 0x40a9f2a8 __wine_spec_unimplemented_stub+0x3b(module=0x0(nil),
function=0x0(nil)) [/home/linaro/wine/wine-git/dlls/winecrt0/stub.c:34] in
kernel32 (0x40d4fde0)
4 0x40a20b30 __wine_stub_RegisterWaitForInputIdle+0x1b() in kernel32
(0x403ef9ec)
5 0x40d4fde8 (0x403ef9ec)
0x40394204 RtlRaiseException+0x1c
[/home/linaro/wine/wine-git/dlls/ntdll/signal_arm.c:929] in ntdll:
ldr r3, [fp, #-16]
929 rec->ExceptionAddress = (LPVOID)context.Pc;
Modules:
Module Address Debug info Name (59 modules)
ELF 8000- 12000 Deferred <wine-loader>
PE 400000- 175d000 Deferred openttdinstaller
...
--- snip ---
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=32481
Bug #: 32481
Summary: Windows Sysinternals "PsInfo" tool fails to retrieve
"system uptime" using PDH (local computername
prepended in path)
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
Windows Sysinternals "PsInfo" tool fails to query for some system properties...
Making this bug about "system uptime".
Output:
--- snip ---
$ wine ./PsInfo.exe
PsInfo v1.77 - Local and remote system information viewer
Copyright (C) 2001-2009 Mark Russinovich
Sysinternals - www.sysinternals.com
Querying information for nexus4...fixme:ole:CoInitializeSecurity
((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
System information for \\nexus4:
Uptime: Error reading uptime
Kernel version: Microsoft Windows XP, Uniprocessor Free
Product type: Professional
Product version: 5.1
Service pack: 3
Kernel build number: 2600
Registered organization:
Registered owner:
IE version: 6.0000
System root: C:\windows
Processors: 4
Processor speed: 2.6 GHz
Processor type: Intel(R) Pentium(R) 4 CPU
Physical memory: 0 MB
Video driver:
--- snip ---
Wine PDH supports "System Up Time" but only if the path doesn't include a
computer name (even if it's the local one).
--- snip ---
0024:Call pdh.PdhOpenQueryW(00000000,00000000,0032f130) ret=004039fa
0024:Call ntdll.RtlAllocateHeap(00110000,00000008,00000020) ret=7eff6ea7
0024:Ret ntdll.RtlAllocateHeap() retval=0013d540 ret=7eff6ea7
0024:Ret pdh.PdhOpenQueryW() retval=00000000 ret=004039fa
0024:Call KERNEL32.GetLastError() ret=0040d8f2
0024:Ret KERNEL32.GetLastError() retval=00000000 ret=0040d8f2
0024:Call pdh.PdhAddCounterW(0013d540,0032f14c L"\\\\nexus4\\System\\System Up
Time",00000000,0032f134) ret=00403a3f
0024:Ret pdh.PdhAddCounterW() retval=c0000bb9 ret=00403a3f
--- snip ---
Wine should support local computername in path (counter sources path entry).
Source:
http://source.winehq.org/git/wine.git/blob/fcd8a8f447f9774faeb2e1b31cea3d09…
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=24417
Summary: America's Army 3 crashes because of d3dcompiler
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://www.americasarmy.com/downloads/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org, matteo.mystral(a)gmail.com
Depends on: 23660
Created an attachment (id=30782)
--> (http://bugs.winehq.org/attachment.cgi?id=30782)
+d3dcompiler trace
Terminal output is short (I trimmed a few non-related steam ones):
fixme:gameux:GameExplorerImpl_VerifyAccess stub
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x150dc0,0x150d30): stub
fixme:d3dcompiler:D3DCompile data 0x44ea000, data_size 528, filename (null),
defines 0x4454e20, include 0x2b7ed58, entrypoint "Main",
target "vs_3_0", sflags 0, eflags 0, shader 0x2b7ec58, error_messages 0x2b7ec78
stub!
fixme:faultrep:ReportFault 0x2b7e948 0x0 stub
err:seh:setup_exception_record stack overflow 1776 bytes in thread 0020 eip
7bc3b1c5 esp 04d30c40 stack 0x4d30000-0x4d31000-0x5030000
this is after bug 23660 was fixed, using builtin d3dx9. Crashes, but native
d3dx9 fixes it again, which leads me to believe it's in d3dcompiler...
+d3dcompiler attached
--
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=32971
Bug #: 32971
Summary: cmview.exe crashes on open
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mbruffey(a)comcast.net
Classification: Unclassified
Created attachment 43549
--> http://bugs.winehq.org/attachment.cgi?id=43549
cmview.exe crash report
cmview.exe is the program that displays Canon PIXMA MX882 scanner manual (and
maybe other Canon manuals). Won't start, but crashes after installation, upon
opening. The installation file is available here:
http://www.usa.canon.com/cusa/consumer/products/printers_multifunction/offi…
. Select MX880 Series On-Screen Manual for Windows. Thx!
First, occurred in 1.4. Upgraded to Version 1.5.23. No change.
--
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=30588
Bug #: 30588
Summary: Houdini: Segmentation fault at startup
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Classification: Unclassified
Created attachment 40020
--> http://bugs.winehq.org/attachment.cgi?id=40020
Segmentation fault window
Steps to reproduce:
1) remove ~/.wine
2) install Houdini
3) wine houdini.exe
Behaviour:
Segmentation fault. (See attachment)
Expected behaviour:
No segmentation fault.
Terminal output:
fixme:win:EnumDisplayDevicesW ((null),0,0x441f0e8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x441f0e8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x442e1c0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x442e1c0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x461e910,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x461e910,0x00000000), stub!
--
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=30591
Bug #: 30591
Summary: Houdini 12.x (3D animation tool) crashes due to
unimplemented function msvcrt.dll.__pxcptinfoptrs in
"purist" mode (builtin msvcr90)
Product: Wine
Version: 1.1.24
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
while investigating bug 30588 I forced the application to use Wine's builtin
msvcr90 (normally it uses supplied runtime).
The manifest has to be moved out of the way because the app installs the VC++
runtime on its own.
At some point it crashed:
--- snip ---
Unhandled exception: unimplemented function msvcrt.dll.__pxcptinfoptrs called
in 32-bit code (0x7b8393ff).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7b8393ff ESP:0a6fe83c EBP:0a6fe8a0 EFLAGS:00000287( - -- I S - -P-C)
EAX:7b826429 EBX:7b8b06b0 ECX:7ecbbf11 EDX:0a6fe864
ESI:00000002 EDI:001e7948
...
Backtrace:
=>0 0x7b8393ff RaiseException+0x87(code=0x80000100, flags=0x1, nbargs=0x2,
args=0xa6fe8c0) [/home/focht/projects/wine/wine-git/dlls/kernel32/except.c:84]
in kernel32 (0x0a6fe8a0)
1 0x7ecbba55 __wine_spec_unimplemented_stub+0x34(module="msvcrt.dll",
function="__pxcptinfoptrs")
[/home/focht/projects/wine/wine-git/dlls/winecrt0/stub.c:34] in msvcrt
(0x0a6fe8d0)
2 0x7ec65db5 __wine_stub___pxcptinfoptrs+0x28() in msvcrt (0x7ec764d5)
3 0x047c0818 in libut (+0xb0817) (0x7ec764d5)
4 0x30ec8353 (0x56e58955)
0x7b8393ff RaiseException+0x87
[/home/focht/projects/wine/wine-git/dlls/kernel32/except.c:84] in kernel32:
subl $4,%esp
84 RtlRaiseException( &record );
...
process tid prio (all id:s are in hex)
00000008 (D) C:\Program Files\Side Effects Software\Houdini
12.0.581\bin\hkey.exe
0000003b 0 <==
00000036 0
00000031 0
00000030 0
00000009 0
...
System information:
Wine build: wine-1.5.3-143-g081b06c
Platform: i386
Host system: Linux
Host version: 3.3.4-1.fc16.x86_64
--- snip ---
$ du -sh houdini-12.0.581-win32-vc9.exe
218M houdini-12.0.581-win32-vc9.exe
$ sha1sum houdini-12.0.581-win32-vc9.exe
b475599d669d35b6af9016726f1ef933caaf92a4 houdini-12.0.581-win32-vc9.exe
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=12179
Summary: MSN Messenger crash in Wine 0.9.58 while starting
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=11576)
--> (http://bugs.winehq.org/attachment.cgi?id=11576)
Console output
After install it MSN Messenger will crash while loading in wine 0.9.58, it
starts if you set it to win2k.
--
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=16772
Summary: MSN Messenger 7.0: Scroll bar in chat window don't have
a limit
Product: Wine
Version: 1.1.12
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=CF49C56C-8B3E-4EAE-9904-9505F47BED45&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
If you're chatting in MSN and have write enough to make appear the scroll bar
you can scroll down the text without limit. The scroll is supposed to scroll
just until the end of the text.
--
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=12447
Summary: MSN Messenger 7.0 crash while loading the Contact list
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=11987)
--> (http://bugs.winehq.org/attachment.cgi?id=11987)
Console output
After Sign in and when it start to load the contact list msn messenger crash.
This happen in current git (08/04/2008). I attach the console output.
--
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=15305
Summary: MSN Messenger wont remember yor username and password
Product: Wine
Version: 1.1.3
Platform: PC
URL: http://www.oldapps.com/download.php?oldappsid=Install_MS
N_Messenger%207.5.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=16135)
--> (http://bugs.winehq.org/attachment.cgi?id=16135)
Before install native MSXML3
MSN Messenger has the option to save your user name and password, but in Wine
it doesn't work at least that you install native MSXML3.
While typing you will see lots of this message:
XPath error : Undefined namespace prefix
xmlXPathEval: evaluation failed
--
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=14483
Summary: WinVerifyTrustEx doesn't return expected HRESULT for PE
images not digitally signed (TRUST_E_NOSIGNATURE)
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.filehippo.com/download_msn_messenger/751/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wintrust
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
this is a follow-up bug of bug 12718
Enable tracing:
--- snip ---
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\IdentityCRL\Trace]
"Level"=dword:00000099
--- snip ---
"msnmsgr.exe" PE image is *not* digitally signed.
Compare both:
--- snip windows trace ---
..
<3776, 3780>: Verifying calling process image is
signed...(a)passportclientlibrary.cpp_103
<3776, 3780>: Failed to WinVerifyTrustEx : C:\Program Files\MSN
Messenger\msnmsgr.exe. hr = 0x800b0100(a)util.cpp_802
<3776, 3780>: Failed to Verify the file signature : C:\Program Files\MSN
Messenger\msnmsgr.exe. hr = 0x800b0100(a)util.cpp_858
<3776, 3780>: Unable to verify caller is signed by MSFT cert 0x800b0100.
GetCertificate API will not function correctly.(a)passportclientlibrary.cpp_124
--- snip windows trace ---
vs.
--- snip wine trace ---
..
<8, 9>: Verifying calling process image is
signed...(a)passportclientlibrary.cpp_103
<8, 9>: Passed WinVerifyTrustEx : C:\Program Files\MSN Messenger\msnmsgr.exe.
@util.cpp_807
<8, 9>: Verify certificate against microsoft root : C:\Program Files\MSN
Messenger\msnmsgr.exe. @util.cpp_808
<8, 9>: Failed to Verify the file signature : C:\Program Files\MSN
Messenger\msnmsgr.exe. hr = 0x800b0100(a)util.cpp_858
<8, 9>: Unable to verify caller is signed by MSFT cert 0x800b0100.
GetCertificate API will not function correctly.(a)passportclientlibrary.cpp_124
--- snip wine trace ---
--- snip wine ---
0030:Ret imagehlp.ImageGetCertificateHeader() retval=00000000 ret=609fb7cc
..
0030:trace:wintrust:CryptSIPGetSignedDataMsg returning 0
0030:Ret wintrust.CryptSIPGetSignedDataMsg() retval=00000000 ret=607c4b2a
0030:trace:crypt:CryptSIPGetSignedDataMsg returning 0
0030:trace:wintrust:SoftpubLoadMessage returning 1 (800b0100)
0030:Ret wintrust.SoftpubLoadMessage() retval=00000001 ret=60a05942
0030:trace:wintrust:WINTRUST_DefaultVerify returning 00000001
0030:trace:wintrust:WinVerifyTrust returning 00000001
0030:Ret wintrust.WinVerifyTrustEx() retval=00000001 ret=003ad2e9
--- snip wine ---
Remember: S_FALSE is not a failure code at all.
The return code evaluation from messenger looks like an inlined FAILED() macro
((HRESULT)(Status)<0) which basically just tests if the result has the high bit
set.
They don't test for S_OK, hence it incorrectly reports "pass" in wine.
TRUST_E_NOSIGNATURE has to be propagated somewhere because that's what
WinVerifyTrustEx() should return in that case.
Reagrds
--
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=33198
Bug #: 33198
Summary: Multiple applications ported to WinRT/ARM using
msvcr110.dll require msvcrt.setjmp
Product: Wine
Version: 1.5.25
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says ...
--- snip ---
$ wine ./Audacity.exe
...
err:module:find_forwarded_export function not found for forward 'msvcrt.setjmp'
used by L"C:\\windows\\system32\\msvcr110.dll". If you are using builtin
L"msvcr110.dll", try using the native one instead.
--- snip ---
Currently implemented for x86 64-bit in msvcrt:
http://source.winehq.org/git/wine.git/blob/14a81773c7ce865dd6d919ddee89cad3…
--- snip ---
1371 @ cdecl -arch=x86_64 -norelay -private setjmp(ptr) MSVCRT__setjmp
--- snip ---
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=32992
Bug #: 32992
Summary: ARM port of "WabbitEMU" wants
KERNEL32.dll.RtlLookupFunctionEntry
Product: Wine
Version: 1.5.24
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
split from bug 32991 which is about unimplemented function
KERNEL32.dll.RtlUnwindEx
+module,+imports
--- snip ---
...
0009:trace:module:load_dll looking for L"KERNEL32.dll" in
L"Z:\\home\\linaro\\wine-apps\\wabbitemu;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0009:trace:module:load_dll Found L"C:\\windows\\system32\\KERNEL32.dll" for
L"KERNEL32.dll" at 0x7b820000, count=19
0009:warn:module:import_dll No implementation for KERNEL32.dll.RtlUnwindEx
imported from L"Z:\\home\\linaro\\wine-apps\\wabbitemu\\Wabbitemu.exe", setting
to 0x41820000
0009:trace:imports:import_dll --- RtlUnwindEx KERNEL32.dll.1209 = 0x41820000
0009:trace:imports:import_dll --- GetCommandLineA KERNEL32.dll.481 = 0x7b846be0
0009:trace:imports:import_dll --- RtlPcToFileHeader KERNEL32.dll.1205 =
0x7bc69188
0009:warn:module:import_dll No implementation for
KERNEL32.dll.RtlLookupFunctionEntry imported from
L"Z:\\home\\linaro\\wine-apps\\wabbitemu\\Wabbitemu.exe", setting to 0x41820024
0009:trace:imports:import_dll --- RtlLookupFunctionEntry KERNEL32.dll.1203 =
0x41820024
0009:trace:imports:import_dll --- GetModuleFileNameW KERNEL32.dll.634 =
0x7b86b864
...
--- snip ---
MSDN entry for KERNEL32.dll.RtlLookupFunctionEntry:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms680597%28v=vs.85%…
("ARM Definition")
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=17622
Summary: Overdrive media console fails to install.
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gmstalk(a)gmail.com
Created an attachment (id=19807)
--> (http://bugs.winehq.org/attachment.cgi?id=19807)
Log file created when install is attempted
When I attempt to install the overdrive media console, the install quietly
fails and generates a text document named VSDCA_VsdLaunchConditions.Log
(attached).
--
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=18941
Summary: Microsoft Reader install crashes
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sashoalm(a)gmail.com
I know that Microsoft Reader worked before but now the install crashes. This
happened after I added the winehq repos to my software sources list, so I'm
using the newest version 1.1.23
--
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=18651
Summary: Microsoft Reader hangs in full screen mode
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://download.microsoft.com/download/d/0/9/d099ad62-
41d1-4e92-9935-67955a437460/MSReaderSetupUSA.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21366)
--> (http://bugs.winehq.org/attachment.cgi?id=21366)
wine-1.1.22-135-g79fcaa7 +win
Microsoft Reader hangs and has to be killed when put into Full Screen Mode.
This appears in the console:
fixme:win:LockWindowUpdate (0x30036), partial stub!
fixme:win:LockWindowUpdate ((nil)), partial stub!
To get this far, "winetricks vcrun6" required to work around Bug 18644.
--
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=28536
Bug #: 28536
Summary: MS Reader cannot be moved or closed after full-screen
mode
Product: Wine
Version: 1.3.29
Platform: x86-64
URL: http://download.microsoft.com/download/d/0/9/d099ad62-
41d1-4e92-9935-67955a437460/MSReaderSetupUSA.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 36631
--> http://bugs.winehq.org/attachment.cgi?id=36631
Wine 1.3.29 console output
MS Reader can now be put into full-screen mode, and taken back out.
The Reader behaves normally before, but after putting it into full-screen, then
taking it back out, it is impossible to move the window or close it. It is
also impossible to click on any windows behind the Reader, effectively keeping
it on-top covering the whole screen, although it doesn't look like it is.
--
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=18644
Summary: Microsoft Reader will not open properly
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cscott0108(a)gmail.com
CC: cscott0108(a)gmail.com
When I try to launch Microsoft reader it opens and immediately produces an
error " The Program msreader.exe has encountered a serious problem and needs to
close. We are sorry for the inconvenience." then it says there is a problem
with wine if it works fine in windows in vista and windows xp in virtual
machine works fine just in wine. I have made sure that all .dll files are there
and I installed the ie4linux software and running ie6 per the other help
instructions and no go. I am unsure where the error logs are located and I can
replicate the error on this machine so if any ideas. thanks chris.
--
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=28537
Bug #: 28537
Summary: MS Reader crashes on load
Product: Wine
Version: 1.3.29
Platform: x86-64
URL: http://download.microsoft.com/download/d/0/9/d099ad62-
41d1-4e92-9935-67955a437460/MSReaderSetupUSA.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msvcirt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 36632
--> http://bugs.winehq.org/attachment.cgi?id=36632
wine-1.3.29-121-gfdda702 console output
MS Reader crashes on load. msvcirt is a work around.
fixme:msvcirt:MSVCIRT_ostrstream_sl_void (0x32f030) stub
fixme:msvcirt:MSVCIRT_operator_sl_pchar (0x32f030)->("Unknown Error: Module not
registered") stub
fixme:msvcirt:MSVCIRT_operator_sl_uchar (0x32f030)->( ) stub
fixme:msvcirt:MSVCIRT_operator_sl_pchar (0x32f030)->(":loadswid") stub
fixme:msvcirt:MSVCIRT_ends (0x32f030)->() stub
wine: Unhandled page fault on read access to 0xe5bc45f7 at address 0x5fad2307
(thread 0009), starting debugger...
--
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=23774
Summary: UltraISO: listview items don't highlight on single
LClick
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivankob4wine(a)gmail.com
Created an attachment (id=29798)
--> (http://bugs.winehq.org/attachment.cgi?id=29798)
np highlight
see the atachment
--
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=27180
Summary: Mobile Master: Crash at update
Product: Wine
Version: 1.3.19
Platform: x86
URL: http://www.jumpingbytes.com/down/MobileMasterInst.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=34724)
--> (http://bugs.winehq.org/attachment.cgi?id=34724)
Terminal output on Wine 1.3.20
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) install Mobile Master 7.8.4
4) wine MMStarter.exe
5) Help->Check for Update...->Install
Behaviour:
Crash.
Expected behaviour:
No crash.
--
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=33543
Bug #: 33543
Summary: Pervasive SQL v10 installer aborts with "not enough
free disk space" (needs msi builtin
"PrimaryVolumePath" and "PrimaryVolumeSpaceAvailable"
properties)
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the PSQL installer (actually a sub-installer of another app) complains about
not enough free disk space.
"... installation requires at least [PsqlRequiredMinimumMB] MB of free space on
volume [PrimaryVolumePath] to continue. Free up space on this volume and run
the installation again or run the installation on a different system."
Trace log:
--- snip ---
...
0031:trace:process:create_process_impl app (null) cmdline L"msiexec /i
\"F:\\PervasiveMin\\PervasivePSQLv10WGE_x86.msi\" /qn PVSW_PSQL_LICENSE_KEY=foo
PVSW_RUN_WGE_AS_SVC=Y /l*v \"C:\\PSQL_v10_Install.log\""
...
000d:trace:msi:msi_get_property property L"PrimaryVolumeSpaceAvailable" not
found
...
000d:trace:msi:msi_get_property returning L"122880" for property
L"PsqlRequiredMinimum512Bytes"
...
000d:trace:msi:MSI_EvaluateConditionW 1 <- L"Not Installed And
(PrimaryVolumeSpaceAvailable<PsqlRequiredMinimum512Bytes)"
000d:trace:msi:ACTION_PerformAction Performing action
(L"pvswCA_AbortMsg_NotEnoughMinimumDiskSpace")
...
000d:trace:msi:ACTION_CustomAction Handling custom action
L"pvswCA_AbortMsg_NotEnoughMinimumDiskSpace" (113 (null) L"29033")
...
000d:err:msi:ITERATE_Actions Execution halted, action
L"pvswCA_AbortMsg_NotEnoughMinimumDiskSpace" returned 1603
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370847%28v=vs.85%…
("PrimaryVolumeSpaceAvailable property")
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370846%28v=vs.85%…
("PrimaryVolumePath property")
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370845%28v=vs.85%…
("PRIMARYFOLDER property")
Orca, "PervasivePSQLv10WGE_x86.msi"
Property table:
--- snip ---
...
PRIMARYFOLDER PVSW_PSQL_INSTDIR32
...
--- snip ---
Directory table:
--- snip ---
PVSW_PSQL_INSTDIR32 PVSW_PSQL_INSTDIR32_ROOT PSQL
INSTALLDIR PVSW_PSQL_INSTDIR32 .
PVSW_PSQL_INSTDIR64 PVSW_PSQL_INSTDIR64_ROOT PSQL
INSTALLDIR64 PVSW_PSQL_INSTDIR64 .
ISCommonFilesFolder CommonFilesFolder Instal~1|InstallShield
PVSW_PSQL_DATADIR_ROOT CommonAppDataFolder PERVAS~3|Pervasive Software
PVSW_PSQL_DATADIR PVSW_PSQL_DATADIR_ROOT PSQL
PVSW_PSQL_INSTDIR32_ROOT ProgramFilesFolder PERVAS~1|Pervasive Software
ProgramFilesFolder TARGETDIR .:PROGRA~1|program files
PVSW_PSQL_INSTDIR64_ROOT ProgramFiles64Folder PERVAS~2|Pervasive Software
--- snip ---
Google found a log of installer on native Windows which also gives hints:
http://www.sms.com.sg/public/olam/PSQL_v10_Install.log
--- snip ---
...
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying CostingComplete
property. Its current value is '0'. Its new value: '1'.
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: BindImage
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: PublishComponent
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: SelfReg
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: Font
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying
PrimaryVolumeSpaceAvailable property. Its current value is '0'. Its new value:
'431264336'.
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying
PrimaryVolumeSpaceRequired property. Its current value is '0'. Its new value:
'87239'.
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying
PrimaryVolumeSpaceRemaining property. Its current value is '0'. Its new value:
'431177097'.
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Adding PrimaryVolumePath
property. Its value is 'C:'.
MSI (s) (08:10) [18:54:59:859]: Skipping action:
pvswCA_AbortMsg_NotEnoughMinimumDiskSpace (condition is false)
MSI (s) (08:10) [18:54:59:859]: Doing action: RemoveExistingProducts
Action ended 18:54:59: InstallValidate. Return value 1.
...
--- snip ---
Might be useful to also provide "PrimaryVolumeSpaceRequired" and
"PrimaryVolumeSpaceRemaining" properties at some point but not strictly
required here.
$ wine --version
wine-1.5.29-163-g4013a8d
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=10666
Summary: My Invoices and Estimates does not run and Installs
(with errors).
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://shop.avanquest.com/usa/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dennis.dentremont(a)gmail.com
Created an attachment (id=9493)
--> (http://bugs.winehq.org/attachment.cgi?id=9493)
wine console output
My Invoice and Estimates 8.0 Trial version.
Software installs but fails to install fonts and produces the following type of
error. "Font TT0001M did not install". The code changes to TT0XXXX depending on
the font it's trying to install at the time.
When I try and run it, it just simply fails. I have attached the console
output.
--
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=29344
Bug #: 29344
Summary: Multiple apps need Scripting.FileSystemObject
implementation (Microsoft Scripting Runtime)
Product: Wine
Version: 1.3.34
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
there are several apps/bugs that suffer from missing
"Scripting.FileSystemObject" implementation.
Unfortunately there is not a single bug that is not polluted by winetricks
wsh56/57 recipes where people kept on moving to other issues, completely
ignoring this one...
Creating this bug as starting point for "Scripting.FileSystemObject"
implementation to allow proper dependency tracking of other bugs.
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=30131
Bug #: 30131
Summary: wPrime doesn't start
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
When I try to run it using native msvbm60.dll, these messages are being logged
in console:
fixme:ole:OleLoadPictureEx
(0xbae154,774,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f914),
partially implemented.
fixme:ole:OLEPictureImpl_SaveAsFile (0x133800)->(0x1383d8, 0, (nil)), hacked
stub.
Welcome to wPrime Benchmark v2.08.
err:ole:CoGetClassObject class {0d43fe01-f093-11cf-8940-00a0c9054228} not
registered
err:ole:create_server class {0d43fe01-f093-11cf-8940-00a0c9054228} not
registered
err:ole:CoGetClassObject no class object {0d43fe01-f093-11cf-8940-00a0c9054228}
could be created for context 0x5
followed by a message box saying:
Run-time error '429':
ActiveX component can't create object
--
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=31358
Bug #: 31358
Summary: Bobcad v25 hangs on startup
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Tried installing free trial
13f91536f3a429ccb65b45b7bf72adb927c7d294 BobCAD_V25_Demo_32bit.exe
from
http://www.bobcad.com/products/cad
Seemed to install fine, and put up a UI, but the main window of the
UI was never drawn, and the UI was nonresponsive.
--
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=24664
Summary: The letter 'R' is not visible in Shapes On A Plane
Product: Wine
Version: 1.3.4
Platform: x86
URL: https://www.digipen.edu/?id=1170&proj=433
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Nearly all the letter 'R' are not visible in text such as the options screen.
--
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=20987
Summary: msi tests can't be run in parallel
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: testcases
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
We spend an awful lot of time waiting for tests to finish.
It'd be awesome if "make -j 100 test" worked.
As a first step, let's make the msi tests work in parallel.
"make -j100" in the msi directory explodes at the moment
because many of the tests use the same filenames.
--
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=32991
Bug #: 32991
Summary: ARM port of "WabbitEMU" crashes due to unimplemented
function KERNEL32.dll.RtlUnwindEx (no ntdll forward on
arch=arm)
Product: Wine
Version: 1.5.24
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the ARM port of "WabbitEMU", a Texas Instruments graphing calculator emulator
and dev tools crashes after clicking "Browse for a ROM image" radio button in
image selection dialog.
Download: http://forum.xda-developers.com/showpost.php?p=37928562
(main thread: http://forum.xda-developers.com/showthread.php?t=2092348)
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay wine ./Wabbitemu.exe
...
0024:Call user32.GetWindowTextA(00010096,40a0ebf0,00000104) ret=00439fa5
0024:Call window proc 0x40bc5f30
(hwnd=0x10096,msg=WM_GETTEXT,wp=00000104,lp=40a0ebf0)
0024:Ret window proc 0x40bc5f30
(hwnd=0x10096,msg=WM_GETTEXT,wp=00000104,lp=40a0ebf0) retval=00000000
0024:Ret user32.GetWindowTextA() retval=00000000 ret=00439fa5
0024:Call KERNEL32.GetLastError() ret=004141cf
0024:Ret KERNEL32.GetLastError() retval=00000000 ret=004141cf
0024:trace:seh:raise_exception info[0]=0047be54
0024:trace:seh:raise_exception info[1]=0047cc8e
wine: Call from 0x7bc9a630 to unimplemented function KERNEL32.dll.RtlUnwindEx,
aborting
0024:trace:seh:call_stack_handlers calling handler at 0x7bcb8d88 code=80000100
flags=1
0024:Call KERNEL32.UnhandledExceptionFilter(40a0e81c) ret=7bcb8df0
--- snip ---
The app is importing all win32 API by name so it's the real thing :-)
+module,+imports
--- snip ---
...
0009:trace:module:load_dll looking for L"KERNEL32.dll" in
L"Z:\\home\\linaro\\wine-apps\\wabbitemu;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0009:trace:module:load_dll Found L"C:\\windows\\system32\\KERNEL32.dll" for
L"KERNEL32.dll" at 0x7b820000, count=19
0009:warn:module:import_dll No implementation for KERNEL32.dll.RtlUnwindEx
imported from L"Z:\\home\\linaro\\wine-apps\\wabbitemu\\Wabbitemu.exe", setting
to 0x41820000
0009:trace:imports:import_dll --- RtlUnwindEx KERNEL32.dll.1209 = 0x41820000
0009:trace:imports:import_dll --- GetCommandLineA KERNEL32.dll.481 = 0x7b846be0
0009:trace:imports:import_dll --- RtlPcToFileHeader KERNEL32.dll.1205 =
0x7bc69188
0009:warn:module:import_dll No implementation for
KERNEL32.dll.RtlLookupFunctionEntry imported from
L"Z:\\home\\linaro\\wine-apps\\wabbitemu\\Wabbitemu.exe", setting to 0x41820024
0009:trace:imports:import_dll --- RtlLookupFunctionEntry KERNEL32.dll.1203 =
0x41820024
0009:trace:imports:import_dll --- GetModuleFileNameW KERNEL32.dll.634 =
0x7b86b864
...
--- snip ---
It also needs KERNEL32.dll.RtlLookupFunctionEntry later.
Wine forwards both to ntdll but only on arch=x86_64.
It seems Windows RT exposes both API.
Interestingly only the MSDN page for KERNEL32.dll.RtlLookupFunctionEntry gives
a hint about this:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms680597%28v=vs.85%…
("ARM Definition").
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=25193
Summary: Dasher does not operate correctly
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: physicspirate(a)yahoo.ca
Greetings,
I've attempted to run
Dasher(http://appdb.winehq.org/objectManager.php?sClass=version&iId=21982&i…
and it does not appear to be loading or functioning correctly.
I've attached a screenshot of what happens after loading. There is a gray box
up top, and it appears to be non responsive. There also seems to be some
problems with the networking as I have a high speed connection, and their
servers tell me my latency is too high. If I run the same program on windows
it runs like a dream.
--
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=30773
Bug #: 30773
Summary: Nibud C@shflow Manager 4 not starting
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cumulus0007(a)gmail.com
Classification: Unclassified
Nibud C@shflow Manager is an application to manage your finances and personal
budgets.
The application shows a welcome screen, where one can choose to evaluate or to
buy a license. When evaluation is started, it tries to import settings from
other applications. Once this is finished, the application reports an error has
occured and the application must close. No further information is provided.
fixme:ole:CoInitializeSecurity (0x45ae00,-1,(nil),(nil),6,2,(nil),64,(nil)) -
stub!
err:ole:CoGetClassObject class {24e669e1-e90f-4595-a012-b0fd3ccc5c5a} not
registered
err:ole:CoGetClassObject no class object {24e669e1-e90f-4595-a012-b0fd3ccc5c5a}
could be created for context 0x1
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: kan gedeeld
objectbestand niet openen: Bestand of map bestaat niet
fixme:shell:FileIconInit (true)
fixme:hnetcfg:fw_manager_GetIDsOfNames 0x2ca9e40
{00000000-0000-0000-0000-000000000000} 0x32f880 1 1043 0x32f8c4
fixme:resource:GetGuiResources (0xf8,0): stub
Wine 1.5.5
Linux 3.2.0-24-generic #39-Ubuntu SMP Mon May 21 16:52:17 UTC 2012 x86_64
x86_64 x86_64 GNU/Linux
--
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=21010
Summary: vc2005express install broken
Product: Wine
Version: 1.1.34
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: hans(a)meelstraat.net
Regression testing points to:
bd4bc161475f600612fad898f09825d74d6368a9 is first bad commit
commit bd4bc161475f600612fad898f09825d74d6368a9
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Tue Nov 17 15:59:11 2009 +0100
msi: Don't set the ALLUSERS property.
:040000 040000 8964ea41515d9eaa19c0d38d44caa5b4661665e7
f3940f8962ebb38ca7f406d7fa1c65f44feaf03e M dlls
side note: git bisect run is awesome!
Reverting that in git lets the installer run to completion. Terminal output is
breathtakingly short:
Executing wine Ixpvc /t:c:\winetrickstmp\vc2005express.tmp /q:a /c:msiexec /i
vcsetup.msi VSEXTUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress
err:msi:ITERATE_Actions Execution halted, action L"SxsInstallCA" returned 1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603
--
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=18797
Summary: CATIAV5R19: Fails to install on Wine higher than
1.1.18
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=21574)
--> (http://bugs.winehq.org/attachment.cgi?id=21574)
Output from terminal
I'm using Wine 1.1.22 (compiled from source using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386.
The problem is that CATIAV5R19 crashes during setup (doesn't even start to copy
files). This is probably regression because this program installs fine on
Wine-1.1.18 (not in 1.1.19 and later).
--
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=33006
Bug #: 33006
Summary: Installation of Garmin Training Center 3.6.5 fails
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: par.johansson8(a)comhem.se
Classification: Unclassified
Installation of Garmin Training Center 3.6.5 fails with "You must be a local
administrator to run this application".
According to the app database
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=26537), at least
installation should work.
I use Fedora 17.
Best regards,
Pär Johansson
--
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=33357
Bug #: 33357
Summary: garmin basecamp 4.1.2 "requires administrator
privileges" and will not run
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.duncan(a)ncl.ac.uk
Classification: Unclassified
Garmin Basecamp 4.1.2
If run with wine configured to execute as anything from windows xp onwards:
the program basecamp_412.exe halts with a message saying
"you must be local administrator".
If run with wine configured as an earlier version of windows than xp the
program halts with message
"unsupported operating system"
--
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=29938
Bug #: 29938
Summary: signcode tool from .NET Framework SDK 1.1 crashes due
to unimplemented function
cryptui.dll.CryptUIWizDigitalSign
Product: Wine
Version: 1.4-rc4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
running the "signcode" tool from .NET Framework 1.1 SDK results in:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Microsoft.NET/SDK/v1.1/Bin
$ wine ./signcode.exe
fixme:ole:CoInitializeSecurity (0x45adf0,-1,(nil),(nil),6,2,(nil),64,(nil)) -
stub!
err:ole:CoGetClassObject class {24e669e1-e90f-4595-a012-b0fd3ccc5c5a} not
registered
err:ole:CoGetClassObject no class object {24e669e1-e90f-4595-a012-b0fd3ccc5c5a}
could be created for context 0x1
wine: Call from 0x7b83924f to unimplemented function
cryptui.dll.CryptUIWizDigitalSign, aborting
wine: Unimplemented function cryptui.dll.CryptUIWizDigitalSign called at
address 0x7b83924f (thread 0009), starting debugger...
--- snip ---
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=25570
Summary: Crash when attempting to log in to Desura client
Product: Wine
Version: 1.3.9
Platform: x86
URL: http://www.desura.com/DesuraInstaller.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=32559)
--> (http://bugs.winehq.org/attachment.cgi?id=32559)
Wine 1.3.9 terminal log
A digital distribution service like Steam
Ubuntu 10.10
When trying to log on it crashes.
Terminal log attached.
--
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=33109
Bug #: 33109
Summary: Desura fails to update
Product: Wine
Version: 1.5.25
Platform: x86
URL: http://www.desura.com/DesuraInstaller.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Classification: Unclassified
After doing a new install of desura in a clean prefix, I get the following
error trying to start it: "Failed to update Desura: Check sum failed on file
\\desura.exe [49.0]"
After running it for the first time desura.exe is replaced by an empty file, so
I can't try to start it at all.
--
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=32711
Bug #: 32711
Summary: BSAopt fails with "Unhandled exception: unimplemented
function ADVAPI32.dll.RegSetKeyValueA called"
Product: Wine
Version: 1.5.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daniel.santos(a)pobox.com
Classification: Unclassified
Created attachment 43163
--> http://bugs.winehq.org/attachment.cgi?id=43163
patch to add RegSetKeyValue{A,W}
BSAopt is "Bethesda Archive Management and Optimization", the tool for managing
archives for their games (Skyrim, Fallout, etc., link here:
http://skyrim.nexusmods.com/mods/247). I guess not many people use this
function so it hasn't really been hit before.
I've only run the tests for dlls/advapi32/tests/registry.c, a menial test of
regedit and a few apps for testing, but no problems are apparent.
--
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=10716
Summary: Spurious hyperlink rendering in Blitzin 2.34
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Patch git-commit f945f16de201dbd834da10701025665bfa8f05ee "riched20:
WM_GETTEXTLENGTH should include CRLF conversions in returned count." causes a
regression whereby some text is wrongly rendered to look like hypertext links.
This will typically occur at the start or the end of a line, but not
exclusively.
--
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=10809
Summary: Directory selection broken in 16-bit File dialog
Product: Wine
Version: 0.9.50.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
The following patch renders the "Directories" pane of 16-bit File dialogs
inoperative.
Git commit 873799df246ea107a139ec898686490b20a1de7b
user32: Fix returned value of LB_DIR.
--
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=12098
Summary: Text positioning regression in Dragon Naturally Speaking
9
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Sometime between wine-0.9.57 and yesterday, probably quite recently,
text positioning in the DNS 9 training window broke.
Text that should be centered horizontally now starts
in the wrong location (way left of the window).
I'll attach screenshots.
--
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=14462
Summary: Blitzin2: Cursor not visible
Product: Wine
Version: 1.1.1
Platform: Other
URL: http://www.chessclub.com/bits/interface/blitzin234.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Git commit 762e5818d1c6cad877c3add809ef40c993478542 "richedit: Hide cursor when
text is selected" causes a regression in Blitzin 2 (v2.34) whereby the cursor
disappears and remains invisible.
The installer for this version needs to be run in a Win95-compatible
configuration. To verify this phenomenon, make a guest login and look for the
presence of a cursor in the console window.
--
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=29863
Bug #: 29863
Summary: ICC Dasher crashes on start (without ie6 installed)
Product: Wine
Version: 1.4-rc2
Platform: x86
URL: http://www.chessclub.com/bits/interface/Dasher_154_ins
taller.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 38805
--> http://bugs.winehq.org/attachment.cgi?id=38805
terminal output
Dasher is the client application for connecting and playing on Internet Chess
Club.
The application can be installed without issues, but it crashes shortly after
starting.
Workaround: winetricks ie6
Steps to reproduce the problem with the demo:
1. Install the demo as usual.
2. Start the application with Dasher.exe.
3. In the launcher choose <Play against my computer> option. The application
main window is shown, and a blank/unresponsive window in it. This window
normally should show the opponent selection screen. Dasher.exe crashes in about
5 seconds (without the possibility to interact with application).
--
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=10135
Summary: Crash in Microsoft Dynamics GP trial setup in sxs
support?
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This one's a bit tricky to set up.
Microsoft Dynamics GP trial's installer wants mdac 2.8.1;
fine, so let the app's installer do that, run twice to
work around bug 5824.
It then needs .net 1.1;
fine, so let the app's installer do that...
that runs into bug 10134. I worked around that by using
native dcom98 to finish the .net install.
OK, so then I run MS Dynamic GP's trial installer again,
expecting it to get past those two known problems and
into a new one. And sure enough, it crashed in activation
context code:
Unhandled exception: page fault on read access to 0xc07e3e11 in 32-bit code
(0x7ef844e1).
=>1 0x7ef844e1 check_actctx+0x11(h=<is not available>)
[/home/dank/wine-git/dlls/ntdll/actctx.c:573] in ntdll (0x0032fa28)
2 0x7ef8490b RtlAddRefActivationContext+0xb(handle=0xc07e3e11)
[/home/dank/wine-git/dlls/ntdll/actctx.c:2279] in ntdll (0x0032fa30)
3 0x7ee165ad AddRefActCtx+0x1d(hActCtx=0xc07e3e11)
[/home/dank/wine-git/dlls/kernel32/actctx.c:188] in kernel32 (0x0032fa40)
4 0x790598c5 in fusion (+0x198c5) (0x0032fa88)
5 0x792487fb in mscorwks (+0x987fb) (0x0032fac4)
6 0x79230635 in mscorwks (+0x80635) (0x0032fb54)
7 0x7924594b in mscorwks (+0x9594b) (0x0032fb60)
8 0x792c61e8 in mscorwks (+0x1161e8) (0x0032fb6c)
9 0x005525f3 in setup (+0x25f3) (0x0032fba8)
10 0x01003e97 in setup (+0x3e97) (0x0032fde0)
11 0x0100475e in setup (+0x475e) (0x0032ff08)
12 0x7ee580be start_process+0xee(arg=0x0)
[/home/dank/wine-git/dlls/kernel32/process.c:839] in kernel32 (0x0032ffe8)
13 0xb7e6d9c7 wine_switch_to_stack+0x17() in libwine.so.1 (0x00000000)
0x7ef844e1 check_actctx+0x11 [/home/dank/wine-git/dlls/ntdll/actctx.c:573] in
ntdll: cmpl $0xc07e3e11,0x0(%edx)
573 switch (actctx->magic)
--
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=31848
Bug #: 31848
Summary: Printing from command line not implemented in Wordpad
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: download, printing, source
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
The SlingPlayer 1.5 installer gives you the option of printing the licence
agreement.
Clicking on print creates a dialog:
"Wordpad: Printing not implemented."
http://source.winehq.org/source/programs/wordpad/wordpad.c#L1202
--
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=24816
Summary: Webplus x2 install failure
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: James.horney.j(a)gmail.com
when i try to install webplus x2 the installer fails and tells me to use the
setup.exe which i have and i don't know what to do as my business depends on
this software!
--
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=22656
Summary: Serif Webplus X2 trial crashes because of missing
windowscodecs registry key
Product: Wine
Version: 1.1.44
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: windowscodecs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
After installation, trying to run the application it crashes instantly. There's
a generated log file Errorlog.txt that says:
WebPlus caused an Access Violation (0xc0000005)
in module windowscodecs.dll at 0073:2009246b.
>From a +reg,+relay log:
0009:trace:reg:NtOpenKey
(0x100,L"{7ED96837-96F0-4812-B211-F13C24117ED3}",20019,0x32e80c)
0009:trace:reg:NtOpenKey <- 0x104
0009:Ret advapi32.RegOpenKeyExW() retval=00000000 ret=20090df5
0009:Call advapi32.RegOpenKeyExW(00000104,200a281e
L"Instance",00000000,00020019,0032e808) ret=20090e9c
0009:trace:reg:NtOpenKey (0x104,L"Instance",20019,0x32e808)
0009:trace:reg:NtOpenKey <- 0x108
.
.
.
.
0009:Call
advapi32.RegEnumKeyExW(00000108,00000006,0032e7b6,0032e804,00000000,00000000,00000.000,00000000)
ret=20090f4c
0009:trace:reg:RegEnumKeyExW
(0x108,6,0x32e7b6,0x32e804(39),(nil),(nil),(nil),(nil))
0009:Ret advapi32.RegEnumKeyExW() retval=00000103 ret=20090f4c
0009:Call advapi32.RegCloseKey(00000108) ret=200910b1
0009:Ret advapi32.RegCloseKey() retval=00000000 ret=200910b1
0009:Call advapi32.RegCloseKey(00000104) ret=2009103a
0009:Ret advapi32.RegCloseKey() retval=00000000 ret=2009103a
0009:Call advapi32.RegCloseKey(00000100) ret=20090e3f
0009:Ret advapi32.RegCloseKey() retval=00000000 ret=20090e3f
0009:trace:seh:raise_exception code=c0000005 flags=0 addr=0x2009246b
ip=2009246b tid=0009
0009:trace:seh:raise_exception info[0]=00000001
0009:trace:seh:raise_exception info[1]=00000000
0009:trace:seh:raise_exception eax=00000000 ebx=200abff4 ecx=00000000
edx=00000000 esi=00185ed8 edi=00000001
It apparantly crashes enumerating the keys, on windows there are 7 keys, in
wine's registry there are 6. The missing one seems to belong to WICWmpDecoder
which seems to be completely unimplemented. Adding the key alone is enough to
get the app running (see below reg file, just regedit it)
REGEDIT4
[HKEY_CLASSES_ROOT\CLSID\{7ED96837-96F0-4812-B211-F13C24117ED3}\Instance\{A26CEC36-234C-4950-AE16-E34AACE71D0D}]
"CLSID"="{A26CEC36-234C-4950-AE16-E34AACE71D0D}"
--
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=22653
Summary: Does not install WebPlus
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brafferton(a)btconnect.com
2 things Linux is completely useless at:
1. a decent wysiwyg web developer
2. External Message modems. which we will not dwell on here, but WINE is not
able to install anything that is half decent to obviate these two problems
I used Serif Webplus X2, Now that I have Linux I have to make do with
Kompozer. I can't.
I tried with a previous WebPlus version as I got a little further - but not
much futher:
On the Serif WebPlus 10 CD setup all you get is error 1627
That's it. No more information is available as it doesn't give any.
Does anyone want to borrow the CD?
I use Lucid LTS (it never worked in Karmic either) and WINE 1.1.43
I'd be happy to send more information on the problem if someone could tell me
how to - or just give me an address to send the original CD to - that would be
easier for everyone.
--
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=17135
Summary: virtual write watches cause problems in multithreaded
.NET code (simultaneous GC heap allocations)
Product: Wine
Version: 1.1.13
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=262d25e3-f589-4842-8157-034d1e7cf3a3&displaylang=en
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Created an attachment (id=18992)
--> (http://bugs.winehq.org/attachment.cgi?id=18992)
Winedbg session of migpolwin
Hello,
while testing some older .NET 1.x stuff I encountered mysterious (rare) install
errors which did not happen until recently.
The problem is caused by the addition of virtual write watch support
(technically a regression).
--- snip ---
$ git bisect good
af8bb2e9222a79cc6ef2fa22c4eac75122eac5de is first bad commit
commit af8bb2e9222a79cc6ef2fa22c4eac75122eac5de
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Nov 25 12:07:35 2008 +0100
ntdll: Add support for virtual write watches.
:040000 040000 99d51bad8c4d6a32417c8ed53edeee43370bd463
ffc461379b1aa89527cacadc5555d0d9eaa77a56 M dlls
:040000 040000 eb2d3dc044c246182b50c6fd4650ce0242ad4f4b
3523f1756ea054c4c3ad26f78a8161c46330bb5f M include
:040000 040000 e4ba31cd1e60853ad020f15bef20883951424793
4f34f4d2a0e87e51a7d53ed15a39b718bbaaa856 M server
$ wine --version
wine-1.1.9-66-g81b9ca5
--- snip ---
Unfortunately tracking the problem down is not easy as it exhibits only
sporadically in .NET Framework 1.0 and 1.1 installer.
Multi-core CPU/machines seem to escalate this problem further.
Basically you have to loop .NET Framework 1.1 install again and again in clean
WINEPREFIX until you hit exception dialog.
--- snip ---
$ wine --version
wine-1.1.13-272-gf63d950
--- snip ---
--- loop ---
$ wineserver -k
$ rm -rf .wine
$ wine dotnetfx11.exe /q:a /c:"install.exe /qb /l"
--- loop ---
The installer is almost at its end, running the .NET 1.0 -> 1.1 migration tool.
When the exception dialog pops up, dismiss the message with "OK", the installer
will finish.
Manually run the migration tool thereafter.
If the installer finished without exception dialog, there is no use in manually
re-running the migration tool, it will skip the steps which will lead to
exception.
Some +tid,+seh,+relay,+virtual,+ntdll trace log (multithreaded
execution/output):
Both threads of interest causing faults almost simultaneously:
--- snip ---
...
0032:trace:virtual:virtual_handle_fault 0x47ca000, 1
002f:trace:virtual:virtual_handle_fault 0x47cbffc, 1
0032:trace:virtual:VIRTUAL_SetProt handling write watch on 0x47ca000-0x47cafff
0032:trace:virtual:VIRTUAL_DumpView View: 0x4750000 - 0x674ffff (valloc)
0032:trace:virtual:VIRTUAL_DumpView 0x4750000 - 0x47cafff c-rw-
0032:trace:virtual:VIRTUAL_DumpView 0x47cb000 - 0x47d1fff c-rw-
0032:trace:virtual:VIRTUAL_DumpView 0x47d2000 - 0x574ffff --rw-
0032:trace:virtual:VIRTUAL_DumpView 0x5750000 - 0x5755fff c-rw-
0032:trace:virtual:VIRTUAL_DumpView 0x5756000 - 0x5761fff c-rw-
0032:trace:virtual:VIRTUAL_DumpView 0x5762000 - 0x674ffff --rw-
002f:trace:virtual:VIRTUAL_SetProt 0x47cb000-0x47cbfff c-rw-
002f:trace:virtual:VIRTUAL_SetProt handling write watch on 0x47cb000-0x47cbfff
002f:trace:virtual:VIRTUAL_DumpView View: 0x4750000 - 0x674ffff (valloc)
002f:trace:virtual:VIRTUAL_DumpView 0x4750000 - 0x47cbfff c-rw-
002f:trace:virtual:VIRTUAL_DumpView 0x47cc000 - 0x47d1fff c-rw-
002f:trace:virtual:VIRTUAL_DumpView 0x47d2000 - 0x574ffff --rw-
002f:trace:virtual:VIRTUAL_DumpView 0x5750000 - 0x5755fff c-rw-
002f:trace:virtual:VIRTUAL_DumpView 0x5756000 - 0x5761fff c-rw-
002f:trace:virtual:VIRTUAL_DumpView 0x5762000 - 0x674ffff --rw-
0032:trace:seh:raise_exception code=c0000005 flags=0 addr=0x791b3e04
ip=0x791b3e04 tid=0032
0032:trace:seh:raise_exception info[0]=00000001
0032:trace:seh:raise_exception info[1]=047cb000
0032:trace:seh:raise_exception eax=00000000
ebx=047c002f:trace:virtual:VIRTUAL_SetProt 0x47cc000-0x47ccfff c-rw-
002f:trace:virtual:VIRTUAL_SetProt handling write watch on 0x47cc000-0x47ccfff
--- snip ---
Both "VIRTUAL_SetProt handling write watch" (VIRTUAL_SetProt -> if
(view->protect & VPROT_WRITEWATCH)) and "virtual_handle_fault" TRACE msg were
added by me to show the code flow before the exception.
Thread 0x2f ought to fix the problem by "accidentally" resetting the write
watch also for code executed in thread 0x32.
Attached is a winedbg session showing the same problem.
Only threads 0x18 and 0x1B are of interest.
Thread 0x18 is actually zeroing GC heap memory at this point, causing the
fault.
I first thought about a race condition in fault handler while adjusting vm page
protection but multiple threads causing faults/page protection changes should
be serialized by "csVirtual" critical section.
Just to be sure, my Linux kernel:
--- snip ---
2.6.27.9-159.fc10.x86_64 #1 SMP Tue Dec 16 14:47:52 EST 2008 x86_64 x86_64
x86_64 GNU/Linux
--- snip ---
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=9738
Summary: Fails to Install .Net Framework 1.1
Product: Wine
Version: 0.9.3.
Platform: Macintosh
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: youngjova(a)optonline.net
Created an attachment (id=8171)
--> (http://bugs.winehq.org/attachment.cgi?id=8171)
Error Log
Microsoft .Net Framework 1.1 setup has ended prematurely.
I was trying to install a program from UniversalRemote.com. Everything
downloaded fine but it couldn't intall.
--
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=10772
Summary: ChurchWindows 2006 Trial fails on .net 1.1 installer?
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://churchwindows.com
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-dotnet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Installer seems to hang. Console shows:
...
Registration of
c:\windows\Microsoft.NET\Framework\v1.1.4322\Microsoft.Vsa.Vb.CodeDOMProcessor.tlb
successful.
fixme:virtual:NtAllocateVirtualMemory MEM_WRITE_WATCH type not supported
fixme:advapi:RegisterEventSourceA ((null),".NET Runtime"): stub
fixme:advapi:RegisterEventSourceW (L"",L".NET Runtime"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000000,(nil),0x0001,0x00000000,0x7e31990c,(nil)):
stub
err:eventlog:ReportEventW L".NET Runtime version 1.1.4322.573- RegSvcs.exe -
Common Language Runtime Debugging Services: Application has generated an
exception that could not be handled....
Unhandled Exception: StackOverflowException.
wine: Unhandled page fault on read access to 0xc07e3e11 at address 0x7ef83d41
(thread 0041), starting debugger...
Backtrace:
=>1 0x7ef83d41 check_actctx+0x11(h=<is not available>)
[dlls/ntdll/actctx.c:574] in ntdll (0x0034f928)
2 0x7ef8416b RtlAddRefActivationContext+0xb(handle=0xc07e3e11)
[dlls/ntdll/actctx.c:2292] in ntdll (0x0034f930)
3 0x7ee3fe91 AddRefActCtx+0x11(hActCtx=0xc07e3e11)
[dlls/kernel32/actctx.c:187] in kernel32 (0x0034f940) ...
0x7ef83d41 check_actctx+0x11 [dlls/ntdll/actctx.c:574] in ntdll: cmpl
$0xc07e3e11,0x0(%edx)
574 switch (actctx->magic)
Pressing ^C in the console lets the installer seem to
complete, but it hangs at the 'finish' dialog, and you have
to kill wineserver.
To start up, the app needs mfc40 (which is harder now that
the url winetricks uses is offline; anyone know a new one?)
Don't know what happens if you have mfc40, haven't grabbed a copy.
--
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=10126
Summary: .Net 1.1 fails on install in regsvcs.exe
Product: Wine
Version: 0.9.47.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-dotnet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjmckenzie51(a)sprintpcs.com
Created an attachment (id=8695)
--> (http://bugs.winehq.org/attachment.cgi?id=8695)
Dump log from regsvcs.exe error.
While attempting to install .Net 1.1 regsvcs.exe caused a coredump error.
Attached is the dump log.
--
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=10134
Summary: regtlib.exe from .NET 1.1's dotnetfx.exe installer
crashes with heap problem
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?displayl
ang=en&FamilyID=262D25E3-F589-4842-8157-034D1E7CF3A3
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This one was mentioned at the end of bug 5358, but I only just
now got around to isolating it. I ran into this in the context of bug
5358 (Microsoft Dynamics GP Trial). That app comes with dotnetfx.exe,
which fails to install. The problem is a heap corruption or something
in our COM implementation, as it fails slightly faster and cleaner with
WINEDEBUG=warn+heap, and succeeds with native dcom98.
The problem can be reproduced with the .net 1.1 installer downloadable
from Microsoft. This has the same md5 signature as the one on the cdrom.
Oddly, when I first hit this it took ten seconds, the second
time it took half an hour, no idea why the speed difference.
I think it might be WINEDEBUG=warn+heap makes it run slow,
that's another sign of an uninitialized variable.
Here's the script I used to demonstrate the bug. I'll attach fail.log.
set -x
wineserver -k
rm -rf .wine
export WINE=$HOME/wine-git/wine
export WINEPREFIXCREATE=$HOME/wine-git/tools/wineprefixcreate
sh ~/bin/winetricks fakeie6
# install .net 1.1
test -f dotnetfx.exe || wget
http://download.microsoft.com/download/a/a/c/aac39226-8825-44ce-90e3-bf8203…
# fwiw, md5sum dotnetfx.exe is 52456ac39bbb4640930d155c15160556
#
WINEDEBUG=warn+heap,+process $WINE dotnetfx.exe
# Here's how it fails:
#trace:process:CreateProcessW app
L"c:\\windows\\system32\\URTTEMP\\regtlib.exe" cmdline
L"\"c:\\windows\\system32\\URTTEMP\\regtlib.exe\"
\"c:\\windows\\Microsoft.NET\\Framework\\v1.1.4322\\mscorlib.tlb\""
#warn:heap:HEAP_ValidateInUseArena Heap 0x110000: invalid in-use arena magic
for 0x11a1a8
#wine: Unhandled page fault on read access to 0xaaaaaaba at address 0x7ec89683
(thread 0023), starting debugger...
# OK, so run just the failing command:
WINEDEBUG=warn+heap,+ole $WINE c:\\windows\\system32\\URTTEMP\\regtlib.exe
c:\\windows\\Microsoft.NET\\Framework\\v1.1.4322\\mscorlib.tlb > fail.log 2>&1
# Yep, that fails very nicely -- but passes with native dcom98!
sh ~/bin/winetricks dcom98
WINEDEBUG=warn+heap,+process $WINE c:\\windows\\system32\\URTTEMP\\regtlib.exe
c:\\windows\\Microsoft.NET\\Framework\\v1.1.4322\\mscorlib.tlb > ok.log 2>&1
--
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=15748
Summary: .NET 1.1's dotnetfx fails to install, aborts when it
can't stop the msi service?
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
winetricks dotnet11, or any other way of running the .net 1.1
runtime installer, seems to abort for me with a dialog saying
An error occurred while Windows Installer was initializing...
C:\\windows\\temp\\dotNetFx.log says
StopDarwinService() - Call to ControlService() failed!
GetLastError() returned: <183>
183 is ERROR_ALREADY_EXISTS.
Wine's log says
003d:Call advapi32.OpenServiceA(0013c4f0,00402740 "msiserver",00000024)
ret=0040b496
...
trace:service:OpenServiceW returning 0x135278
003d:Ret advapi32.OpenServiceA() retval=00135278 ret=0040b496
003d:Call advapi32.QueryServiceStatus(00135278,0033f114) ret=0040b50f
trace:service:QueryServiceStatus 0x135278 0x33f114
trace:service:QueryServiceStatusEx 0x135278 0 0x33ef64 36 0x33ef88
...
003d:Ret advapi32.QueryServiceStatus() retval=00000001 ret=0040b50f
003d:Call advapi32.ControlService(00135278,00000001,0033f158) ret=0040b58d
trace:service:ControlService 0x135278 1 0x33f158
...
003d:Ret advapi32.ControlService() retval=00000000 ret=0040b58d
003d:Call KERNEL32.CreateFileA(00530ab0
"C:\\windows\\temp\\dotNetFx.log",40000000,00000003,0033ef1c,00000004,00000080,00000000)
ret=00410106
...
003d:Call user32.MessageBoxA(00000000,0033cec8 "An error occurred while Windows
Installer was initializing. Setup will now close.",0033dfcc "Microsoft .NET
Framework Setup",00000010) ret=0040a331
It seems to be aborting because it can't stop the msiserver service?
Which is strange, since it probably wasn't running...
I wonder if a conformance test for ControlService would be informative.
--
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=33391
Bug #: 33391
Summary: Microsoft .NET Framework Version 2.0 x64 installer
prerequisite check fails (incorrect "VersionNT64" msi
property value)
Product: Wine
Version: 1.5.28
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
while investigating some 64-bit application installer I found a problem with
"VersionNT64" msi installer property.
--- snip ---
0027:trace:msi:MSI_EvaluateConditionW L"( ((VersionNT64 < 502) OR (VersionNT64
= 502 AND WindowsBuild < 3506)) )"
...
0027:trace:msi:MSI_EvaluateConditionW 1 <- L"( ((VersionNT64 < 502) OR
(VersionNT64 = 502 AND WindowsBuild < 3506)) )"
0027:trace:msi:ACTION_PerformAction Performing action
(L"CA_Check64OS.3643236F_FC70_11D3_A536_0090278A1BB8")
...
--- snip ---
It's ok to fail in Windows XP mode (VersionNT64 should be 501) but to my
surprise it also failed in later WinVer settings (Windows 2003, ...).
The reason is a "reuse" of string buffer which ought to hold WinVer encoded as
MajorVersion * 100 + MinorVersion.
Source:
http://source.winehq.org/git/wine.git/blob/40f3a9fa590b1e4ab785509bb389efbe…
--- snip ---
671 static VOID set_installer_properties(MSIPACKAGE *package)
672 {
673 WCHAR *ptr;
674 OSVERSIONINFOEXW OSVersion;
675 MEMORYSTATUSEX msex;
676 DWORD verval, len;
677 WCHAR pth[MAX_PATH], verstr[11], bufstr[22];
...
860 /* set the os things */
861 OSVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEXW);
862 GetVersionExW((OSVERSIONINFOW *)&OSVersion);
863 verval = OSVersion.dwMinorVersion + OSVersion.dwMajorVersion * 100;
864 len = sprintfW( verstr, szFormat, verval );
865 switch (OSVersion.dwPlatformId)
866 {
867 case VER_PLATFORM_WIN32_WINDOWS:
868 msi_set_property( package->db, szVersion9x, verstr, len );
869 break;
870 case VER_PLATFORM_WIN32_NT:
871 msi_set_property( package->db, szVersionNT, verstr, len );
872 len = sprintfW( verstr, szFormat,OSVersion.wProductType );
873 msi_set_property( package->db, szMsiNTProductType, verstr, len
);
874 break;
875 }
876 len = sprintfW( verstr, szFormat, OSVersion.dwBuildNumber );
877 msi_set_property( package->db, szWindowsBuild, verstr, len );
878 len = sprintfW( verstr, szFormat, OSVersion.wServicePackMajor );
879 msi_set_property( package->db, szServicePackLevel, verstr, len );
880
881 len = sprintfW( bufstr, szFormat2, MSI_MAJORVERSION, MSI_MINORVERSION
);
882 msi_set_property( package->db, szVersionMsi, bufstr, len );
883 len = sprintfW( bufstr, szFormat, MSI_MAJORVERSION * 100 );
884 msi_set_property( package->db, szVersionDatabase, bufstr, len );
885
886 GetNativeSystemInfo( &sys_info );
887 len = sprintfW( bufstr, szIntFormat, sys_info.wProcessorLevel );
888 msi_set_property( package->db, szIntel, bufstr, len );
889 if (sys_info.u.s.wProcessorArchitecture ==
PROCESSOR_ARCHITECTURE_INTEL)
890 {
...
902 }
903 else if (sys_info.u.s.wProcessorArchitecture ==
PROCESSOR_ARCHITECTURE_AMD64)
904 {
905 msi_set_property( package->db, szMsiAMD64, bufstr, -1 );
906 msi_set_property( package->db, szMsix64, bufstr, -1 );
907 msi_set_property( package->db, szVersionNT64, verstr, -1 );
...
--- snip ---
"verstr" is overwritten several times.
At the point of setting "szVersionNT64" msi property, "verstr" simply contains
the last string buffer "reuse" value which is obviously not what we want here
...
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.