http://bugs.winehq.org/show_bug.cgi?id=5604
Summary: Galactic Civilizations demo dies with 'Unhandled
exception: divide by zero'
Product: Wine
Version: 0.9.16.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: armeagle(a)hetnet.nl
When i run the Galactic Civilizations demo, it dies after the intro movies with
'Unhandled exception: divide by zero'.
It sounds similar to http://bugs.winehq.org/show_bug.cgi?id=2300 But it doesn't
work for me, as opposed to what the last commenter says there.
Apparently I couldn't change the state of that bug back from 'resolved/fixed',
and my traceback is showing more information (see attachment).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5603
Summary: MS Dao 3.5 with builtin OLEAUT32.DLL fail to evalutate
expressions in SQL sentences
Product: Wine
Version: 0.9.16.
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paolo.salvan(a)xvision.it
Using DAO 3.5 (the engine for MS Access 97 databases) and Wine 0.9.9/15/16
I've got a trouble:
when I launch a query that uses some expressions (ie: "SELECT
Format(...) FROM Customers") the query fails, lamenting that the
function doesn't exist...
(A note that can help: Dao uses VBAR332.DLL or Expsrv.dll module to
evaluate expressions)
The console log says:
----
fixme:ole:MSFT_ReadValue BSTR length = -1?
fixme:ole:MSFT_ReadValue BSTR length = -1?
----
Replacing the builtin OLEAUT32.DLL with the native DLL everything works
ok.
The attached minimal project reproduce the problem; before starting it, install
standard Dao 3.5 setup from MS or install
http://download.danea.it/demo/def2006demo09b.exe (that is my SW, it install a
minimal Dao3.5)
BTW, this is the minimal bit of Delphi code to reproduce the problem:
procedure TForm1.Button1Click(Sender: TObject);
var
daodbeng: DAODBEngine;
daodb: DAODatabase;
daors: DAORecordset;
begin
try
daodbeng:= OpDAO35.CreateEngine;
daodb:= daodbeng.OpenDatabase(ChangeFileExt(Application.ExeName,
'.mdb'), false, false, '');
// This works under Windows, fails under Wine:
daors:= daodb.OpenRecordset('SELECT Format(#1/1/2000#, "yyyy", 2) FROM
TConfig', dbOpenDynaset, _, _);
// This always works:
//daors:= daodb.OpenRecordset('SELECT * FROM TConfig', dbOpenDynaset, _, _);
daors.Free;
daodb.Free;
daodbeng.Free;
ShowMessage('OK');
except
on e: Exception do
ShowMessage('Exception: ' + e.ClassName + '; Msg: ' + e.Message);
end;
end;
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4063
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Component|wine-ole |wine-x11driver
Resolution|LATER |
------- Additional Comments From dank(a)kegel.com 2006-05-07 09:58 -------
I just repeated this crash with native dcom98 and riched20.
+relay shows it may be crashing in gdi32.StretchBlt.
I'm going to set the component to x11 (might not be right,
but it's closer than ole).
I haven't looked into it at all, but here's the relevant part of the log:
0009:Call
gdi32.StretchBlt(00008a78,00000000,00000000,00000085,0000009a,0000022c,00000000,00000000,00000085,0000009a,00cc0020)
ret=66039538
0009:Call ntdll.RtlAllocateHeap(7fcf0000,00000000,0000f134) ret=7f8ea0dc
0009:Ret ntdll.RtlAllocateHeap() retval=7db4a688 ret=7f8ea0dc
0009:Call winex11.drv.GetDeviceCaps(7fd4ffc8,00000058) ret=7f8dfb41
0009:Ret winex11.drv.GetDeviceCaps() retval=00000060 ret=7f8dfb41
0009:Call kernel32.MulDiv(00000060,00000f61,00000064) ret=7f8ea1f3
0009:Ret kernel32.MulDiv() retval=00000ec4 ret=7f8ea1f3
0009:Call winex11.drv.GetDeviceCaps(7fd4ffc8,0000005a) ret=7f8dfb41
0009:Ret winex11.drv.GetDeviceCaps() retval=00000060 ret=7f8dfb41
0009:Call kernel32.MulDiv(00000060,00000f61,00000064) ret=7f8ea229
0009:Ret kernel32.MulDiv() retval=00000ec4 ret=7f8ea229
0009:Call kernel32.94(7f94d820) ret=7f902ac1
err:syslevel:_CheckNotSysLevel Holding lock 0x7f94d820 level 3
0009:Call kernel32.IsBadReadPtr(00404b58,00000004) ret=660270ae
0009:Ret kernel32.IsBadReadPtr() retval=00000000 ret=660270ae
0009:Call kernel32.IsBadReadPtr(00403358,00000004) ret=660270ae
0009:Ret kernel32.IsBadReadPtr() retval=00000000 ret=660270ae
0009:Call kernel32.IsBadReadPtr(00404150,00000004) ret=660270ae
0009:Ret kernel32.IsBadReadPtr() retval=00000000 ret=660270ae
0009:Call kernel32.IsBadReadPtr(004040c0,00000004) ret=660270ae
0009:Ret kernel32.IsBadReadPtr() retval=00000000 ret=660270ae
0009:Call kernel32.UnhandledExceptionFilter(7fb9d514) ret=660881d6
0009:Call ntdll.NtCreateEvent(7fb9d448,001f0003,7fb9d408,00000001,00000000)
ret=7fc2f35b
0009:Ret ntdll.NtCreateEvent() retval=00000000 ret=7fc2f35b
wine: Unhandled exception 0x80000003 at address 0x7fc72698 (thread 0009),
starting debugger...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5602
Summary: Microsoft Word Viewer 97 installer appears to hang
Product: Wine
Version: CVS
Platform: Other
URL: http://www.5star-shareware.com/Windows/Business/MS-
OfficeAdd-Ins/word-viewer-download.html
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
+relay shows it's busy enumerating all the files on Z:\
which on my system is a LOT of files.
Removing the symlink ~/.wine/dosdevices/z:
makes the slow screen finish in eight seconds.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5415
------- Additional Comments From rob(a)codeweavers.com 2006-05-07 08:45 -------
If you have installed a package from your distribution, you don't need to do
anything. If you are copying the file from Windows, etc. you put it into
.wine/drive_c/windows/fonts.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4141
------- Additional Comments From dank(a)kegel.com 2006-05-07 08:21 -------
Qingdao, have I told you lately that you rock? :-)
Your patch fixes the problem!
Can you submit it along with the matching conformance test change,
or would you like me to?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5601
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2826|text/x-log |text/plain
mime type| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.