http://bugs.winehq.org/show_bug.cgi?id=17923
Summary: No music in X-COM: UFO Defense
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: afffect(a)gmail.com
No music playing in X-COM: UFO Defense Collectors Edition. Sound is ok. Older
Wine versions are affected too.
The only output is those 3 lines:
fixme:win:EnumDisplayDevicesW ((null),0,0x33f644,0x00000000), stub!
fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to
8
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x13af28,0x13ae28): stub
Probably has something to do with the SetVolumePan stub, I've tried to dig in
the code to implement it, but failed. I guess it shouldn't be too difficult to
implement for someone familiar with wine sound stuff.
--
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=18631
Summary: regedit
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Based off bug 18622, regedit pops up the wrong error when recasing a file. To
preproduce:
$ wine regedit
insert a new key 'foobar'
right click, rename 'foobar' to 'FOOBAR'
Error 'File exists'.
On windows 2K, it gives:
'Error Renaming Value'
'Cannot rename foobar: The specified value name already exists. Type another
name and try again'
'OK'
--
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=25538
Summary: Heroes of Newerth needs native msvcr80
Product: Wine
Version: 1.3.9
Platform: x86
URL: http://dl.heroesofnewerth.com/HoNClient-2.0.2.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
You can reproduce this without an account. Download, install, run hon.exe, and
get:
wine: Call from 0x7b838d43 to unimplemented function msvcr80.dll._fcvt_s,
aborting
may also need msvcr80:wctomb_s.
--
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=25402
Summary: Woody Two Legs crashes with unimplemented function
msvcr90.dll._ecvt_s
Product: Wine
Version: 1.3.8
Platform: x86
URL: http://games.on.net/file/38121/Woody_Two-Legs_Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Woody Two Legs requires d3dx9_36.dll otherwise
wine: Call from 0x7b837392 to unimplemented function
d3dx9_36.dll.D3DXFloat32To16Array, aborting
with d3dx9_36.dll
wine: Call from 0x7b837392 to unimplemented function msvcr90.dll._ecvt_s,
aborting
It works with d3dx9_36.dll and winetricks vcrun2008
--
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=26586
Summary: xmlhttprequest basic authentication don't work
Product: Wine
Version: 1.3.16
Platform: x86
URL: http://netikka.net/dev/basicauth.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Testsite/url: http://browserspy.dk/password-ok.php
Simple xmlhttprequest example: http://netikka.net/dev/basicauth.exe
Username and password is included in request. But response shows you did not
give username / password. Works ofcourse in Windows.
Source:
procedure TForm1.Button1Click(Sender: TObject);
var xmlhttp: variant;
s: string;
begin
xmlhttp:=createoleobject('MSXML2.XMLHTTP.3.0');
xmlhttp.open('GET', edit1.text, true, edit2.text, edit3.text);
xmlhttp.send();
while(xmlhttp.readystate<>4) do application.processmessages;
s:=xmlhttp.responsetext;
s:=copy(s, ansipos('<tbody>', s), length(s)-ansipos('<tbody>', s));
s:=copy(s, 1, ansipos('</tbody>', s)-1);
memo1.text:=s;
if (ansipos(edit2.text, s)=0) or (ansipos(edit3.text, s)=0)
then showmessage('Failed!');
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=24759
Summary: safearray axis in reversed order
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cbill.lam(a)gmail.com
The api SafeArrayCreate expected a vector holding the shape
of array, eg. foo[3,4], the vector should be {3,4}. But what
I found was that wine interprets this vector in the reversed
order of what a real window would do. Hence one need to supply
a vector of {4,3} to wine to create the correct shape.
Also related to this, other api that need axis number are also
affected. eg. SafeArrayGetLBound/SafeArrayGetUBound
SafeArrayGetLBound ,1, will retrieve lbound of the second axis
SafeArrayGetLBound ,2, will retrieve lbound of the first axis
steps to reproduce problem,
create a safearray of shape [3,4] of integer from 0 to 11
open excel via ole automation and get a range of cell of the same shape
put the variant of the safearray into range
cleanup ole stuff
use excel or other spreadsheet programs to inspect the result.
expected output is a block of cells
0 1 2 3
4 5 6 7
8 9 10 11
actual output:
numbers not in this order and a column of cells with content <n/a>
repeat the test using real window and to confirm result.
--
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=22679
Summary: Photoshop CS5 installer fails
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://www.adobe.com/products/photoshop/main.html
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=27934)
--> (http://bugs.winehq.org/attachment.cgi?id=27934)
wine-1.1.44-19-gd2a0188 +msi +msidb +msiexec
The installer for Photoshop CS5 (32-bit) exits without error.
Console simply states "Exiting Installer with Code: 0"
This will probably affect all CS5 products.
Tried the workaround for Bug 18070 but that did not help so this is a separate
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=18688
Summary: Ventrilo crashes on startup
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://pastey.net/115072
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vhaarr+wine(a)gmail.com
This is a weird one for me.
If Ventrilo 3.0.x is the first application to start under WINE (1.1.22), it
works fine.
If, however, you start another application first, say World of Warcraft, and
then try to start Ventrilo, it crashes with the following debug output:
http://pastey.net/115072
Note that this only happens with WINE 1.1.22, NOT 1.1.21 or earlier. So it is a
recent regression.
Hopefully that should lead to a speedy fix.
--
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=30551
Bug #: 30551
Summary: Wine/msxml3 unhandled page fault
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tonybcrawford(a)gmail.com
Classification: Unclassified
An xml related crash occurs when running the SDET product with Wine 1.4.
The following error message is produced:
fixme:msxml:domdoc_putref_schemas (0x150b10)->({VT_DISPATCH: (nil)}): semi-stub
wine: Unhandled page fault on read access to 0x00000000 at address 0x7e3381fe
(thread 0009)
--
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=26420
Summary: TES Construction Set crashes on topic view/edit
Product: Wine
Version: 1.3.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kakuremura(a)gmail.com
Created an attachment (id=33639)
--> (http://bugs.winehq.org/attachment.cgi?id=33639)
Debugger output
TES Construction Set version 1.2.404
(http://download.zenimax.com/elderscrolls/oblivion/other/tes_construction_se…)
Wine crashes after a few clicks when you want to add/edit the conversation
topics/dialogs for a quest. Some times it will crash immediately on selecting
the topic tab.
--
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.