http://bugs.winehq.com/show_bug.cgi?id=1506
------- Additional Comments From marcus(a)jet.franken.de 2003-03-06 00:57 -------
is the reproducible with the download version? if yes, what actions lead to reproduction of the problem?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1506
Summary: Problem with variant array allocation in Wine
Product: Wine
Version: unspecified
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cozzuol(a)enter-net.com.br
Hi all,
I was trying to use a statistical program called PAST under Wine. It use to
run OK, but recently (with new Wine versions - wine-20030508, rpm version for
Mandrake 9.1) I get some problems related to variant array allocation.
Following is the feedback from the program owner, Oyvind Hammer
(oyvind.hammer(a)nhm.uio.no). The Program site is
http://folk.uio.no/ohammer/past
-------- quote ----------
To be precise, the problem is as follows. In Delphi, I do
a:=VarArrayCreate([1,2,1,3], varDouble);
This should allocate a variant array of size 2x3. And as
expected, when I query the dimensions of the array in
Windows, I get
VarArrayHighBound(a, 1) = 2
and
VarArrayHighBound(a, 2) = 3
However, under Wine I get the reverse, meaning that
Wine has allocated a 3x2 array:
VarArrayHighBound(a, 1) = 3
and
VarArrayHighBound(a, 2) = 2
This causes "Variant index out of bounds" when I refer
to the cell a[1,3] for example.
--------- end quote ----------
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1480
------- Additional Comments From wine(a)unixslave.com 2003-02-06 18:04 -------
I get this error in installshield as well:
[hennessy@marvin foo]$ wine semc_j2me_sdk_v11_55.exe
fixme:cdrom:CDROM_GetIdeInterface cdrom not a block device!!!
fixme:cdrom:CDROM_GetIdeInterface cdrom not a block device!!!
fixme:cdrom:CDROM_GetIdeInterface cdrom not a block device!!!
fixme:cdrom:CDROM_GetIdeInterface cdrom not a block device!!!
fixme:cabinet:FDICreate (pfnalloc == ^0x402fc6, pfnfree == ^0x413d7e, pfnopen ==
^0x4030ae, pfnread == ^0x402fd1, pfnwrite == ^0x40300e, pfnclose ==
^0x403054, pfnseek == ^0x40307b, cpuType == 1, perf == ^0x406aebf4): stub
err:dc:DCE_FreeWindowDCE [0x10023] GetDC() without ReleaseDC()!
I have no Windows at all on my system, though in a pinch I could find an old
ole32.dll on one of my installers :/
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1505
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From marcus(a)jet.franken.de 2003-02-06 12:44 -------
can you give us the +ole trace please?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2003-02-06 12:15 -------
Andreas, thanks for reply
any ideas about some points of relay where all scenario should be changed? or
should we wait for Alexandre to come back from vacation :-?
in any case i am afraid it would be too hard for me to handle this situation
alone.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2003-02-06 12:06 -------
hi Duane, that's a no problem :)
i have read through bodies of some functions and saw some unexpected details.
one for example could be that 32-to-16 bit message translations. at first i
thought the cause of crash is translation, wrongly truncating "wParam". after i
read some old win3.1 api help and thought both the pointers, and both integers
they are pointing to should be 16-bit wide.
it seems, wine passes 32-bit pointers to win16 subroutines. here arises
question for me: why? shouldn't that address/pointers be translated alltogether
somewhere between the:
16 0x407fbb59 (GetScrollRange+0x55(hwnd=0x10039, nBar=0x2, lpMin=0x415a2428,
lpMax=0x415a242c) [scroll.c:1837] in user32.dll.so) (ebp=415a2410)
17 0x407dccf6 (GetScrollRange16+0x3a(hwnd=0x39, nBar=0x2, lpMin=0x40488362,
lpMax=0x40488360) [wnd16.c:493] in user32.dll.so) (ebp=415a243c)
or somewhere else?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-02-06 11:56 -------
Hmm, if I have a closer look at WINPROC_MapMsg32ATo16(),
I notice that SBM_GETRANGE doesn't receive any special handling.
However I think it should be handled specially, since both LPARAM and WPARAM
are supposed to be pointers to min and max values.
In Win16 Watcom, it is defined as:
void WINAPI GetScrollRange(HWND, int, int FAR*, int FAR*);
In other words, *both* variables should be FAR pointers.
Ah, WAIT!! Watcom has:
./h/nt/winuser.h:#define SBM_GETRANGE 0x00E3 /*not in win3.1 */
Guess why this is not available in Win3.1??
Because WPARAM is only 16bit-sized in Win16 (this was the big mystery that I've
been trying to solve for 10 minutes now: how to fit a FAR pointer in a 16bit
variable?? Answer: you don't ;)
So it seems like Wine misbehaves here and does a Win16 call into our
ScrollBarWndProc() for some reason. It should prevent this from happening much
earlier, since using such Win16-crippled "pointers" CANNOT work, of course...
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
------- Additional Comments From dclark(a)akamail.com 2003-02-06 11:27 -------
Oops, I read the second comment before the first. You already figured that out,
sorry.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
------- Additional Comments From dclark(a)akamail.com 2003-02-06 11:25 -------
It looks to me like the interesting part is here. Notice how the pointer in
wParam in line 12 (0x415a2428) was truncated to a the number 2428. And then that
number caused the page fault.
Unhandled exception: page fault on write access to 0x00002428 in 32-bit code
(0x407faf61).
In 32-bit mode.
0x407faf61 (SCROLL_GetScrollRange+0x25 [scroll.c:1321] in user32.dll.so): movl
%edx,0x0(%esi)
1322 if (lpMax) *lpMax = infoPtr ? infoPtr->maxVal : 0;
Wine-dbg>Backtrace:
=>0 0x407faf61 (SCROLL_GetScrollRange+0x25(hwnd=0x10039, nBar=0x2, lpMin=0x2428,
lpMax=0x415a242c) [scroll.c:1321] in user32.dll.so) (ebp=415a1e00)
...
11 0x4082a957 (WINPROC_CallWndProc16+0x163(proc=0x4a700dd, hwnd=0x39,
msg=0xe3, wParam=0x2428, lParam=0x415a242c) [winproc.c:255] in user32.dll.so)
(ebp=415a22c0)
12 0x4082f1fa (WINPROC_CallProc32ATo16+0x66(func=0x4a700dd, hwnd=0x10039,
msg=0xe3, wParam=0x415a2428, lParam=0x415a242c) [winproc.c:2738] in
user32.dll.so) (ebp=415a22fc)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1505
Summary: RE:OLE32.dll does not work for visual foxpro application
Product: Wine
Version: 20030508
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ungsm(a)onlineeos.com
the OCX library since unable to loaded into the visual foxpro application when
the native ole32.dll have been call
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1504
------- Additional Comments From jon(a)campbellsci.com 2003-02-06 10:29 -------
I can provide a binary for the application if that would be of use
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1504
Summary: Can't connect to a server running under wine
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jon(a)campbellsci.com
I have a windows server application that I am attempting to test under wine
that offers a TCP service listening on port 6785. The application appears to
be running (it creates an entry in the system tray and I can access its about
box) and I can see the service entry when I use "netstat -a -p | grep
tcp.*6785" but when I attempt to connect to my server, the connection is
refused.
I am running the specified version of wine on a RedHat 9.0 linux distribution.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2003-02-06 10:16 -------
[s2@localhost c]$ wine --version
Wine 20030508
[s2@localhost c]$ wine --debugmsg +scroll Program\ Files/winled/ledw.exe
Could not stat /mnt/cdrom (No such file or directory), ignoring drive D:
fixme:toolhelp:InterruptRegister16 (0000, 0x21f00ba), stub.
fixme:font:WineEngAddFontResourceEx :stub
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10037 bar=1 page=11 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo new values: page=1 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10037 bar=1 page=11 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo new values: page=1 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10037 bar=1 page=11 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo new values: page=1 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10037 bar=1 page=11 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo new values: page=1 pos=0 min=0 max=0
trace:scroll:SCROLL_CreateScrollBar hwnd=0x10039 lpCreate=0x404d33e8
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10039 bar=2 min=0 max=100
trace:scroll:SCROLL_SetScrollInfo new values: page=0 pos=0 min=0 max=100
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10037 bar=1 page=11 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo new values: page=1 pos=0 min=0 max=0
trace:scroll:SCROLL_SetScrollInfo hwnd=0x10039 bar=2 min=1 max=32767
trace:scroll:SCROLL_SetScrollInfo new values: page=0 pos=1 min=1 max=32767
trace:scroll:GetScrollRange hwnd=0x10039 nBar=2 lpMin=0x415a2428 lpMax=0x415a242c
wine: Unhandled exception, starting debugger...
Could not stat /mnt/cdrom (No such file or directory), ignoring drive D:
WineDbg starting on pid 8
Loaded debug information from ELF 'wine' ((nil))
Breakpoint 1 at 0x4000bae0 (_end+0x400a3d4)
Loaded debug information from ELF '/usr/local/lib/libntdll.dll.so' (0x4001c000)
Loaded debug information from ELF '/usr/local/lib/libwine.so.1' (0x400f6000)
Loaded debug information from ELF '/usr/local/lib/libwine_unicode.so.1' (0x4010d000)
No debug information in ELF '/lib/i686/libm.so.6' (0x401ee000)
No debug information in ELF '/lib/libdl.so.2' (0x40210000)
No debug information in ELF '/lib/ld-linux.so.2' (0x40000000)
No debug information in ELF '/lib/libnss_files.so.2' (0x40414000)
Loaded debug information from ELF '/usr/local/lib/wine/winevdm.exe.so' (0x40531000)
Loaded debug information from ELF '/usr/local/lib/wine/winedos.dll.so' (0x40763000)
Loaded debug information from ELF '/usr/local/lib/wine/user32.dll.so' (0x407a4000)
Loaded debug information from ELF '/usr/local/lib/wine/gdi32.dll.so' (0x408bf000)
Loaded debug information from ELF '/usr/local/lib/wine/advapi32.dll.so' (0x4092f000)
Loaded debug information from ELF '/usr/local/lib/wine/kernel32.dll.so' (0x4095a000)
Loaded debug information from ELF '/usr/local/lib/wine/x11drv.dll.so' (0x40a1c000)
No debug information in ELF '/usr/X11R6/lib/libSM.so.6' (0x40545000)
No debug information in ELF '/usr/X11R6/lib/libICE.so.6' (0x40a82000)
No debug information in ELF '/usr/X11R6/lib/libXext.so.6' (0x40a99000)
No debug information in ELF '/usr/X11R6/lib/libX11.so.6' (0x40aa7000)
No debug information in ELF '/usr/lib/libGL.so.1' (0x40b85000)
No debug information in ELF '/usr/lib/libGLcore.so.1' (0x40bec000)
No debug information in ELF '/usr/X11R6/lib/libXrender.so.1' (0x41139000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/common/xlcUTF8Load.so.2'
(0x4001a000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/common/ximcp.so.2'
(0x41150000)
Loaded debug information from ELF '/usr/local/lib/wine/mmsystem.dll.so' (0x4116e000)
Loaded debug information from ELF '/usr/local/lib/wine/wineoss.drv.so' (0x411d3000)
Loaded debug information from ELF '/usr/local/lib/wine/msacm.drv.so' (0x41213000)
Loaded debug information from ELF '/usr/local/lib/wine/msacm32.dll.so' (0x4122a000)
Loaded debug information from ELF '/usr/local/lib/wine/midimap.drv.so' (0x41360000)
Loaded debug information from ELF '/usr/local/lib/wine/shell.dll.so' (0x415a5000)
Loaded debug information from ELF '/usr/local/lib/wine/ole32.dll.so' (0x4161c000)
Loaded debug information from ELF '/usr/local/lib/wine/rpcrt4.dll.so' (0x41689000)
Loaded debug information from ELF '/usr/local/lib/wine/shlwapi.dll.so' (0x416ce000)
Loaded debug information from ELF '/usr/local/lib/wine/comctl32.dll.so' (0x41718000)
No debug information in 32bit DLL 'C:\Program Files\winled\ledw.exe' (0x40540000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL' (0x40050000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\KERNEL32.DLL' (0x40980000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40940000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x408d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x407d0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEDOS.DLL' (0x40770000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40a30000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINMM.DLL' (0x41180000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\WINEOSS.DRV' (0x411e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM32.DLL' (0x41230000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSACM.DRV' (0x41220000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MIDIMAP.DRV' (0x41370000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x416a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x41640000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x416f0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x41730000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x415c0000)
Unhandled exception: page fault on write access to 0x00002428 in 32-bit code
(0x407faf61).
In 32-bit mode.
0x407faf61 (SCROLL_GetScrollRange+0x25 [scroll.c:1321] in user32.dll.so): movl
%edx,0x0(%esi)
1322 if (lpMax) *lpMax = infoPtr ? infoPtr->maxVal : 0;
Wine-dbg>Backtrace:
=>0 0x407faf61 (SCROLL_GetScrollRange+0x25(hwnd=0x10039, nBar=0x2, lpMin=0x2428,
lpMax=0x415a242c) [scroll.c:1321] in user32.dll.so) (ebp=415a1e00)
1 0x407fb316 (ScrollBarWndProc+0x392(hwnd=0x10039, message=0xe3,
wParam=0x2428, lParam=0x415a242c) [scroll.c:1466] in user32.dll.so) (ebp=415a1eb0)
2 0x4082a707 (WINPROC_wrapper+0x17 in user32.dll.so) (ebp=415a1ed4)
3 0x4082a765 (WINPROC_CallWndProc+0x55(proc=0x407faf84, hwnd=0x10039,
msg=0xe3, wParam=0x2428, lParam=0x415a242c) [winproc.c:185] in user32.dll.so)
(ebp=415a1f00)
4 0x4082f174 (__wine_call_wndproc_32W+0x5c(hwnd=0x39, msg=0xe3, wParam=0x2428,
lParam=0x415a242c, func=0x407faf84) [winproc.c:2714] in user32.dll.so)
(ebp=415a1f34)
5 0x4082f3f4 (CallWindowProc16+0xe8(func=0x18703c8, hwnd=0x39, msg=0xe3,
wParam=0x2428, lParam=0x415a242c) [winproc.c:2798] in user32.dll.so) (ebp=415a1f64)
6 0x407d8629 (__wine_user_exe_CallFrom16_p_long_lwwwl+0x1d(proc=0x4082f30c,
args=0x404882d2) [user.exe.spec.c:1281] in user32.dll.so) (ebp=415a1f80)
7 0x400b6060 (__wine_call_from_16_long+0x94 [relay16.s] in libntdll.dll.so)
(ebp=415a1fb8)
8 0x0247:0x1155 (bp=a590)
9 0x0247:0x016f (bp=a5b2)
10 0x009f:0x0000 (bp=a5ec)
11 0x4082a957 (WINPROC_CallWndProc16+0x163(proc=0x4a700dd, hwnd=0x39,
msg=0xe3, wParam=0x2428, lParam=0x415a242c) [winproc.c:255] in user32.dll.so)
(ebp=415a22c0)
12 0x4082f1fa (WINPROC_CallProc32ATo16+0x66(func=0x4a700dd, hwnd=0x10039,
msg=0xe3, wParam=0x415a2428, lParam=0x415a242c) [winproc.c:2738] in
user32.dll.so) (ebp=415a22fc)
13 0x40840ffc (call_window_proc+0x10c(hwnd=0x10039, msg=0xe3,
wparam=0x415a2428, lparam=0x415a242c, unicode=0x0, same_thread=0x1)
[message.c:1405] in user32.dll.so) (ebp=415a2358)
14 0x40841d02 (SendMessageTimeoutA+0x1ba(hwnd=0x10039, msg=0xe3,
wparam=0x415a2428, lparam=0x415a242c, flags=0x0, timeout=0xffffffff,
res_ptr=0x415a23e4) [message.c:1840] in user32.dll.so) (ebp=415a23c0)
15 0x40841d89 (SendMessageA+0x31(hwnd=0x10039, msg=0xe3, wparam=0x415a2428,
lparam=0x415a242c) [message.c:1884] in user32.dll.so) (ebp=415a23ec)
16 0x407fbb59 (GetScrollRange+0x55(hwnd=0x10039, nBar=0x2, lpMin=0x415a2428,
lpMax=0x415a242c) [scroll.c:1837] in user32.dll.so) (ebp=415a2410)
17 0x407dccf6 (GetScrollRange16+0x3a(hwnd=0x39, nBar=0x2, lpMin=0x40488362,
lpMax=0x40488360) [wnd16.c:493] in user32.dll.so) (ebp=415a243c)
18 0x407d7d90 (__wine_user_exe_CallFrom16_p_word_wwpp+0x4c(proc=0x407dccbc,
args=0x40488342) [user.exe.spec.c:890] in user32.dll.so) (ebp=415a245c)
19 0x400b5f8c (__wine_call_from_16_word+0x94 [relay16.s] in libntdll.dll.so)
(ebp=415a2494)
20 0x0247:0x33b4 (bp=a5fe)
21 0x0247:0x3409 (bp=a614)
22 0x0237:0x26fc (bp=a620, far call assumed)
23 0x0237:0x366c (bp=a62e)
24 0x0237:0x8556 (bp=a664)
25 0x0237:0x85ba (bp=a694)
26 0x0237:0x47df (bp=a6a2)
27 0x0247:0x016f (bp=a6c4, far call assumed)
28 0x009f:0x0000 (bp=a6fe)
29 0x4082a957 (WINPROC_CallWndProc16+0x163(proc=0x4a700f9, hwnd=0x2e,
msg=0x500, wParam=0x0, lParam=0x0) [winproc.c:255] in user32.dll.so) (ebp=415a279c)
30 0x40807d71 (DefDlgProc16+0x69(hwnd=0x2e, msg=0x500, wParam=0x0, lParam=0x0)
[defdlg.c:301] in user32.dll.so) (ebp=415a27d4)
31 0x407d89a6 (__wine_user_exe_CallFrom16_p_long_wwwl+0x1a(proc=0x40807d08,
args=0x40488454) [user.exe.spec.c:1449] in user32.dll.so) (ebp=415a27ec)
32 0x400b6060 (__wine_call_from_16_long+0x94 [relay16.s] in libntdll.dll.so)
(ebp=415a2824)
33 0x0287:0x0d4b (bp=a73a)
34 0x0287:0x0d97 (bp=a74a)
35 0x009f:0x0000 (bp=a784)
36 0x4082a957 (WINPROC_CallWndProc16+0x163(proc=0x2870d7b, hwnd=0x2e,
msg=0x500, wParam=0x0, lParam=0x0) [winproc.c:255] in user32.dll.so) (ebp=415a2b2c)
37 0x40843837 (DispatchMessage16+0xaf(msg=0x40488502) [msg16.c:301] in
user32.dll.so) (ebp=415a2b74)
38 0x40843a3c (IsDialogMessage16+0x40(hwndDlg=0x2e, msg16=0x40488502)
[msg16.c:364] in user32.dll.so) (ebp=415a2bb0)
39 0x407d7398 (__wine_user_exe_CallFrom16_p_word_wp+0x34(proc=0x408439fc,
args=0x404884da) [user.exe.spec.c:514] in user32.dll.so) (ebp=415a2bc8)
40 0x400b5f8c (__wine_call_from_16_word+0x94 [relay16.s] in libntdll.dll.so)
(ebp=415a2c00)
41 0x0247:0x1a9a (bp=a792)
42 0x0247:0x1a29 (bp=a7a2)
43 0x0247:0x19d3 (bp=a7c4)
44 0x0247:0x196c (bp=a7ce)
45 0x0237:0x918f (bp=a7d8, far call assumed)
Wine-dbg>WineDbg terminated on pid 8
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1503
Summary: executing old 16-bit program leads to unhandled
exception in scroll.c
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: saulius.krasuckas(a)elst.vtu.lt
old, 16-bit app crashes every time it gets executed. AFAICS two pointers are
passed to SCROLL_GetScrollRange() function, one of which is truncated to
16-bits, while another stays 32bit wide:
lpMin=0x2428, lpMax=0x415a242c
AFAICS "truncation" happens in function WINPROC_CallProc32ATo16:
11 0x4082a957 (WINPROC_CallWndProc16+0x163(proc=0x4a700dd, hwnd=0x39,
msg=0xe3, wParam=0x2428, lParam=0x415a242c) [winproc.c:255] in user32.dll.so)
(ebp=415a22c0)
12 0x4082f1fa (WINPROC_CallProc32ATo16+0x66(func=0x4a700dd, hwnd=0x10039,
msg=0xe3, wParam=0x415a2428, lParam=0x415a242c) [winproc.c:2738] in
user32.dll.so) (ebp=415a22fc)
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1501
------- Additional Comments From mike(a)theoretic.com 2003-02-06 05:54 -------
Could you be a bit more explicit? What doesn't work exactly, the installer does
not start? What type of installer is it? InstallShield/Wise/Custom etc....
Also, is there any other program with this problem, or is there a downloadable
demo of this app anywhere.
thanks -mike
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1501
Summary: multimedia app not properly installed
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jerome.bouat(a)wanadoo.fr
I tried to install a multimedia application ("Les secrets de l'intelligence" Ubi
Soft) designed for Windows 95. I could install it with previous version of wine.
I got the following log:
[j@laptop Les Secrets]$ wine /mnt/cdrom/install.exe
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
FIXME:pthread_cond_init
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:ddeml:DdeConnect Done with INITIATE, but no Server window available
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
err:module:BUILTIN32_LoadLibraryExA loaded .so but dll user.exe still not found
- 16-bit dll or version conflict.
[j@laptop Les Secrets]
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1490
------- Additional Comments From dvdmoore(a)ix.netcom.com 2003-31-05 20:42 -------
I used winesetuptk to configure my wine instalation in several different ways.
The address of the heap sometimes changes, but the problem remains. When it is
configured to run in a desktop window, the window comes up just fine, but the
loading locks after that with a similar message. Also, the 128 mB of ram with
128 mB swap space I have on my system should be ample enough that total memory
is not the problem.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1500
Summary: winmx 3.31 crash
Product: Wine
Version: 20030508
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tiburzio.luca(a)tin.it
while downloading with winmx 3.31 by multiple sources,
sometimes application crashes asking to send a bug report to WinMx site.
Note: on main WinMx window multiple sources are grouped by "plus" symbol.
I Suspect on syslistview32 component but i'm not sure.
Same mode in windows does its job properly.
Bye
PS: the same crash is present on previous versions of Wine
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1499
Summary: Lotus Notes not working on RH 9.0
Product: Wine
Version: 20030508
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: wewe(a)personal.ro
First I've tried to install Lotus Notes 5.0.12 but I didn't succeed to connect
to Domino server(probably another bug), then I've used an already installed
version of Lotus(which is working) from an RH 8.0. But I can't start it, this is
the output:
fixme:console:SetConsoleCtrlHandler ((nil),0) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler (0x1161a90,1) - no error checking or testing yet
fixme:ole:CoRegisterMessageFilter stub
[adi@adi Notes]$ fixme:hook:NotifyWinEvent (32773,0x10036,1104457960,65535)-stub!
fixme:hook:NotifyWinEvent (32777,0x1002a,-4,0)-stub!
fixme:hook:NotifyWinEvent (32774,0x1002a,-4,1104433896)-stub!
fixme:hook:NotifyWinEvent (32782,0x30021,1076642184,6)-stub!
fixme:seh:EXC_RtlRaiseException call to unimplemented function
user32.dll.SendIMEMessageExA
wine: Unhandled exception, starting debugger...
WineDbg starting on pid a
No debug information in ELF 'wine' ((nil))
Breakpoint 1 at 0x4000c9c0
No debug information in ELF '/usr/lib/wine/libntdll.dll.so' (0x4002e000)
No debug information in ELF '/usr/lib/wine/libwine.so.1' (0x4012d000)
No debug information in ELF '/usr/lib/wine/libwine_unicode.so.1' (0x40145000)
No debug information in ELF '/lib/tls/libpthread.so.0' (0x40226000)
No debug information in ELF '/lib/tls/libm.so.6' (0x40233000)
No debug information in ELF '/lib/libdl.so.2' (0x40256000)
No debug information in ELF '/lib/ld-linux.so.2' (0x40000000)
No debug information in ELF '/lib/libnss_files.so.2' (0x4025a000)
No debug information in ELF '/usr/lib/wine/wine/kernel32.dll.so' (0x407f3000)
No debug information in ELF '/usr/lib/wine/wine/advapi32.dll.so' (0x408f1000)
No debug information in ELF '/usr/lib/wine/wine/oleaut32.dll.so' (0x40920000)
No debug information in ELF '/usr/lib/libungif.so.4' (0x40266000)
No debug information in ELF '/usr/lib/libjpeg.so.62' (0x4099c000)
No debug information in ELF '/usr/X11R6/lib/libX11.so.6' (0x409ba000)
No debug information in ELF '/usr/lib/wine/wine/ole32.dll.so' (0x40a99000)
No debug information in ELF '/usr/lib/wine/wine/user32.dll.so' (0x40b16000)
No debug information in ELF '/usr/lib/wine/wine/gdi32.dll.so' (0x40c5b000)
No debug information in ELF '/usr/lib/wine/wine/rpcrt4.dll.so' (0x40ce0000)
No debug information in ELF '/usr/lib/wine/wine/shell32.dll.so' (0x40d2b000)
No debug information in ELF '/usr/lib/wine/wine/shlwapi.dll.so' (0x40db6000)
No debug information in ELF '/usr/lib/wine/wine/comctl32.dll.so' (0x40e0a000)
No debug information in ELF '/usr/lib/wine/wine/version.dll.so' (0x40ebd000)
No debug information in ELF '/usr/lib/wine/wine/lz32.dll.so' (0x40ed7000)
No debug information in ELF '/usr/lib/libfreetype.so.6' (0x41117000)
No debug information in ELF '/usr/lib/wine/wine/x11drv.dll.so' (0x41168000)
No debug information in ELF '/usr/X11R6/lib/libSM.so.6' (0x4001f000)
No debug information in ELF '/usr/X11R6/lib/libICE.so.6' (0x411db000)
No debug information in ELF '/usr/X11R6/lib/libXv.so.1' (0x40028000)
No debug information in ELF '/usr/X11R6/lib/libXext.so.6' (0x411f2000)
No debug information in ELF '/usr/lib/libGL.so.1' (0x41200000)
No debug information in ELF '/usr/X11R6/lib/libXcursor.so.1' (0x41273000)
No debug information in ELF '/usr/X11R6/lib/libXrender.so.1' (0x4127c000)
No debug information in ELF
'/usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2' (0x4026e000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2'
(0x412a0000)
No debug information in ELF '/usr/lib/wine/wine/netapi32.dll.so' (0x41fd9000)
No debug information in 32bit DLL 'C:\Lotus\Notes\nlnotes.exe' (0x400000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL' (0x40060000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\KERNEL32.DLL' (0x40820000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVCRT.DLL' (0x78000000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\JS32.DLL' (0x407a3000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40900000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NLSCCSTR.DLL' (0x408b6000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40c70000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40b40000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x40d00000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40ab0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL' (0x40940000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NNOTES.DLL' (0x1000000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\LTSSB01.DLL' (0x10000000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x40dd0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\COMCTL32.DLL' (0x40e20000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x40d50000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\LTOUIN22.DLL' (0x18200000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\LZ32.DLL' (0x40ee0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\VERSION.DLL' (0x40ec0000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NPLUGINS.DLL' (0x40017000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NNOTESWS.DLL' (0x500000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x41180000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NSTRINGS.DLL' (0x41b90000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NICNV.DLL' (0x41dc0000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NAMHOOK.DLL' (0x41106000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NTCP.DLL' (0x41284000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NETAPI32.DLL' (0x41fe0000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NNETBIOS.DLL' (0x41d21000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NLSXBE.DLL' (0x434ac000)
No debug information in 32bit DLL 'C:\LOTUS\NOTES\NDBNOTES.DLL' (0x41111000)
Unhandled exception: unimplemented function user32.dll.SendIMEMessageExA called
in 32-bit code (0x40b44058).
In 32-bit mode.
0x40b44058 (USER32.DLL..data+0x2058 in user32.dll.so): subl $4,%esp
Wine-dbg>WineDbg terminated on pid a
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1498
------- Additional Comments From juan(a)virtual-orbis.com 2003-31-05 07:11 -------
did you just installed wine-20030508-1rh8winehq.i686.rpm and did $ wine
/c/windows/notepad.exe ?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1498
Summary: wine fails to execute with chdir error to /tmp/.wine-
<userid>/server...
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: peter(a)silmaril.ie
$ wine /c/windows/notepad.exe
wine: chdir to /tmp/.wine-peter/server-305-14b882 : No such file or directory
This is using the wine-20030508-1rh8winehq.i686.rpm from winehq
Searching bugzilla for "chdir no such file" finds Zorro Boogs.
If this error has already been reported (and I assume it must have been,
as wine simply doesn't work at the moment) please add these keywords so
that the entry in bugzilla can be found.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1497
Summary: test Ignore this
Product: Wine
Version: 20030318
Platform: Macintosh
OS/Version: Mac OS X 10.2
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lwilliams(a)plato.com
Please ignore...just checking out the implementation of bugzilla
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1496
Summary: Lotus Notes generate error. Function not implemented
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jeronimovf(a)yahoo.com.br
The last version work perfectly. The output is:
fixme:ole:_LocalServerThread CoMarshalInterface failed, 80070057!
[jeronimovf@drfcba160a jeronimovf]$ fixme:dosfs:DOSFS_OpenDevice device open
L"COM3" not supported (yet)
err:file:CreateFileW Couldn't open device L"COM3"!
fixme:dosfs:DOSFS_OpenDevice device open L"COM4" not supported (yet)
err:file:CreateFileW Couldn't open device L"COM4"!
err:win:CreateWindowExA bad class name "WC_IRIS_GROUPSHADE"
fixme:win:SetWindowTextA cannot set text "" of other process window (nil)
fixme:dosfs:DOSFS_OpenDevice device open L"COM3" not supported (yet)
err:file:CreateFileW Couldn't open device L"COM3"!
fixme:dosfs:DOSFS_OpenDevice device open L"COM4" not supported (yet)
err:file:CreateFileW Couldn't open device L"COM4"!
service "lotusnotes" protocol * not found; You might want to add this to
/etc/services
service "lotusnotes" protocol * not found; You might want to add this to
/etc/services
service "lotusnotes" protocol * not found; You might want to add this to
/etc/services
fixme:seh:EXC_RtlRaiseException call to unimplemented function
user32.dll.SendIMEMessageExA
fixme:msvcrt:_XcptFilter (-2147483392,0x406d0548)semi-stub
wine: Unhandled exception, starting debugger...
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.