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.
http://bugs.winehq.org/show_bug.cgi?id=25249
Summary: Wine crash running Leonardo.exe - Process
/usr/bin/wine-preloader was killed by signal 11
(SIGSEGV)
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: mothlight(a)fastmail.fm
Steps to Reproduce:
1. Install http://www.envi-met.com/download30.htm (password is 49152cwRt)
2. Start Leonardo component
[nice@politemadness ENVImet31]$ wine Leonardo.exe
wine: Unhandled exception 0x0eedfade at address 0x0000:0x7b837a03 (thread
0009), starting debugger...
err:seh:setup_exception_record stack overflow 992 bytes in thread 0009 eip
7bc712e1 esp 00230f50 stack 0x230000-0x231000-0x330000
Process of pid=0008 has terminated
No process loaded, cannot execute 'echo Modules:'
Cannot get info on module while no process is loaded
No process loaded, cannot execute 'echo Threads:'
Segmentation fault (core dumped)
process tid prio (all id:s are in hex)
0000000e services.exe
00000014 0
00000010 0
0000000f 0
00000011 winedevice.exe
00000017 0
00000016 0
00000013 0
00000012 0
[nice@politemadness ENVImet31]$ 00000019 explorer.exe
0000001a 0
You must be attached to a process to run this command.
No process loaded, cannot execute 'detach'
[nice@politemadness ENVImet31]$ rpm -q wine-core
wine-core-1.3.7-2.fc14.i686
[nice@politemadness ENVImet31]$ pwd
/home/nice/.wine/drive_c/ENVImet31
Output from abrt
warning: core file may not match specified executable file.
[New Thread 14488]
[New Thread 14509]
[New Thread 14510]
Failed to read a valid object file image from memory.
Core was generated by `Leonardo.exe '.
Program terminated with signal 11, Segmentation fault.
#0 0x687c853e in ?? ()
Thread 3 (Thread 14510):
#0 0x68000852 in ?? ()
No symbol table info available.
#1 0x681709eb in ?? ()
No symbol table info available.
#2 0x7bcac868 in ?? ()
No symbol table info available.
#3 0x7bc713f1 in ?? ()
No symbol table info available.
#4 0x00000013 in ?? ()
No symbol table info available.
#5 0x7ffd31d0 in ?? ()
No symbol table info available.
#6 0x7bc3e6a4 in ?? ()
No symbol table info available.
#7 0x7ffd381c in ?? ()
No symbol table info available.
#8 0x7bc732e5 in ?? ()
No symbol table info available.
#9 0x7ffd38e0 in ?? ()
No symbol table info available.
#10 0x68171e00 in ?? ()
No symbol table info available.
#11 0x0000000a in ?? ()
No symbol table info available.
#12 0x7ffd3c4c in ?? ()
No symbol table info available.
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
Thread 2 (Thread 14509):
#0 0x68000852 in ?? ()
No symbol table info available.
#1 0x681709eb in ?? ()
No symbol table info available.
#2 0x7bcac868 in ?? ()
No symbol table info available.
#3 0x7bc79463 in ?? ()
No symbol table info available.
#4 0x7ffd718c in ?? ()
No symbol table info available.
#5 0x7bc3e6e6 in ?? ()
No symbol table info available.
#6 0x00000000 in ?? ()
No symbol table info available.
Thread 1 (Thread 14488):
#0 0x687c853e in ?? ()
No symbol table info available.
#1 0x00000000 in ?? ()
No symbol table info available.
No shared libraries loaded at this time.
No symbol "__abort_msg" in current context.
No symbol "__glib_assert_msg" in current context.
eax 0x1 1
ecx 0x231d88 2301320
edx 0x680214dc 1744966876
ebx 0x687cf220 1753018912
esp 0x7ffdb834 0x7ffdb834
ebp 0x7ffdb88c 0x7ffdb88c
esi 0x7ffdb9d0 2147334608
edi 0x7ffdb994 2147334548
eip 0x687c853e 0x687c853e
eflags 0x10246 [ PF ZF IF RF ]
cs 0x73 115
ss 0x7b 123
ds 0x7b 123
es 0x7b 123
fs 0x33 51
gs 0x3b 59
No function contains program counter for selected frame.
--
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.