http://bugs.winehq.com/show_bug.cgi?id=1555
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |h.davies1(a)physics.ox.ac.uk
------- Additional Comments From mike(a)theoretic.com 2003-03-07 12:44 -------
Hi Huw, can you take a look at this? Quite a few people are having similar problems.
--
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=1569
Summary: Compile problem for Solaris 9 and gcc 3 in wine-
20030618/dlls/ntdll/signal_i386.c
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Solaris
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Alan.Hargreaves(a)Sun.COM
FAULT_ADDR gets used at line 1006. It is of type (void *). It needs a cast to be
able to dereference the structre element. This is how line 372 should read ...
#define FAULT_ADDRESS (((k_siginfo_t *)__siginfo)->si_addr)
Once doing this the compile continues
--
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=1568
------- Additional Comments From marcus(a)jet.franken.de 2003-03-07 00:48 -------
what is the result of echo $LANG on the commandline?
--
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=1568
Summary: german keyboard layout detection doesn work
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pilletiai(a)gmx.net
i compiled wine without any options and installed flashfxp.
when i try to execute flashfxp (/usr/local/bin/wine /home/user/wine/c/Program\
Files/FlashFXP/FlashFXP.exe) i always get an error message about the keyboard.
here the message:
-------
fixme:win32:PE_CreateModule Unknown directory 15 ignored
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (German keyboard layout without dead keys) for
scancode mapping.
Please define your layout in dlls/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
-------
from this moment on the system hangs. i looked into the keyboard.c file and
there i found the correct keyboard layout for my keyboard. so i didn't change
anything. i tried different keyboard settings in X11 too (US, German, German
latin1, German latin1 no dead keys). i have a german logitech keyboard and i'm
running redhat linux 9.0.
i could install flashfxp despite of the keyboard error message.
hope you can help me
--
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=1567
Summary: Capella 2002 - welcome-screen doesn't disappear
Product: Wine
Version: 20030618
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: u.herbst(a)t-online.de
Hi,
I tried to run "Capella 2002" on Suse Linux 8.0 via wine.
Problem: at startup there's a welcome-screen popping up.
I can see the application-windows behind it but there's
no way to get them in focus. (On windows the welcome-screen
disappears after a few seconds).
You can try it out for your self. There's a free demo available
at "www.capella.de" it's name is "cap2002demo.exe".
Kind regards
Ulrich
--
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=1566
jr-winebugs(a)quo.to changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From jr-winebugs(a)quo.to 2003-02-07 15:21 -------
Whoops, missed that <= 0 check... Thanks.
--
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=1566
------- Additional Comments From julliard(a)winehq.com 2003-02-07 14:50 -------
That's already the case actually (though we check for <=0 so it will be
capped at 0x8000, shouldn't really matter).
--
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=1566
Summary: Module reference count (LoadCount) is not capped, could
wrap to zero?
Product: Wine
Version: 20030618
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jr-winebugs(a)quo.to
Looking at dlls/ntdll/loader.c, it doesn't appear that the module reference
counts are capped; they're just blindly incremented. Because of this, if an
application calls LoadLibrary() on the same DLL enough times, the reference
count could wrap around to zero, and this would obviously cause problems.
Windows (both 9x and NT kernels) cap library reference counts at 0xffff.
Further, once the reference count reaches 0xffff, any FreeLibrary() calls are
ignored; the reference count stays at 0xffff. (This makes sense: if an
application calls LoadLibrary() a million times, then 0xffff calls to
FreeLibrary() shouldn't free the DLL.)
The code in loader.c that increments & decrements reference counts should
probably look like this, respectively:
if ((*pwm)->ldr.LoadCount < 0xffff)
(*pwm)->ldr.LoadCount++;
if (wm->ldr.LoadCount < 0xffff)
--wm->ldr.LoadCount;
--
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=1565
Summary: can't run Lotus Notes 5.0.7
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: twhlai(a)sympatico.ca
I'm trying to run Lotus Notes 5.0.7 under Red Hat 9.0 (dual-boot with WinME,
Notes is in a WinME FAT32 partition) and wine-20030618-1rh9winehq.i686.rpm, and
I'm getting the following errors.
fixme:ole:MSFT_DoTypeInfo Assign constructor/destructor memid
fixme:ole:MSFT_DoTypeInfo Assign constructor/destructor memid
fixme:console:SetConsoleCtrlHandler ((nil),0) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler (0x115dfd0,1) - no error checking or testing yet
What should I do? Is there any workaround?
--
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=1561
------- Additional Comments From syjef(a)mdanderson.org 2003-02-07 07:48 -------
The same behaviour I see on -CURRENT. Right down to using KDE-3.1.2.
--
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=1564
Summary: in wcmd.exe, "if exist %directory%" always false
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: winehq(a)ellisw.net
"if exist %somefile%" works correctly. But on a directory, it always returns false. So a
statement like:
if not exist %mydir% mkdir %mydir%
will always execute the mkdir statement, even if the directory already exists.
--
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=1563
Summary: [wine-doc]: superfluous </book>
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rickscafe.casablanca(a)gmx.net
this was reported to mandrake cooker:
>jade:/home/one/rpm/BUILD/wine-20030618/documentation/wine-doc.sgml:141:8:E:
>end tag for element "BOOK" which is not open
the </book> tag is still there in current CVS
Patch:
Index: wine/documentation/wine-doc.sgml
===================================================================
RCS file: /home/wine/wine/documentation/wine-doc.sgml,v
retrieving revision 1.11
diff -r1.11 wine-doc.sgml
141d140
< </book>
--
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=1561
------- Additional Comments From rondinos(a)hotmail.com 2003-01-07 17:06 -------
I am using the latest stable XFree86 4.3.0,1, i don't want to install 5.x yet
because it's pretty unstable for what i use my computer for, all my network
applications in KDE 3.1.2_1 work fine (Xchat, Kvirc etc)
it's only wine that is hanging up when it tries to connect to a socket
--
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=1562
Summary: Problems with editmask on dbedit field in delphi
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: wildcat(a)lns.com.br
I using an application in delphi 5(not portable to kylix without change source
:( ) and trying to emulate it with wine. The application start without
problems, but in fields with editmask i can't insert information. If I type
the correct value to the field in an Notepad (Ex: date) and CTRL+C and CTRL+V
in field it works.
--
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=1561
------- Additional Comments From syjef(a)mdanderson.org 2003-01-07 07:09 -------
What version of XFree86 do you have? When I was on FreeBSD 5.0-R, wine worked
fine with network applications so long as I had XFree86 4.2.x. Trying to use 4.3.0
caused network applications to hang. Currently I am at FreeBSD 5.1-R with XFree85
4.3 and I may be having similar problems, but wine was pretty well broken for me for
awhile after I left 5.0-RELEASE, so I'm no longer sure where the problems I'm having
are coming from.
--
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=1561
Summary: Freebsd not compatible with winsock
Product: Wine
Version: 20030618
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rondinos(a)hotmail.com
I am using FreeBSD 4.8 Stable and the latest version of wine
my connection is ADSL using ppp tunnel ( the standard pppOE connection on
FreeBSD)
I tried several applications like mIRC, Kazaa, winMX and when it's trying to
connect to any server it just hungs up the application, i guess in sort of way
the windows application cannot find my tcp connections
--
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=1560
Summary: regression of patch 8366
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: snoopy97(a)mail.ru
This patch
http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8366
Caused regression with chess.net application.
(http://www.chess.net/cnfw/download/cnfw254.exe)
If you click on a help button it will drop a messagebox which tells
that 'No browser found', it is normal. The anomality is that it is
not possible to close messagebox by clicking "ok" button with a
mouse. But both pressing "enter" and clicking close window icon work.
The line which produce the problem is (dlls/ole32/compobj.c)
apt->win = CreateWindowA(aptWinClass, NULL, 0,
0, 0, 0, 0,
0, 0, OLE32_hInstance, NULL);
--
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=1441
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|spetreolle(a)yahoo.fr |
--
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=1559
Summary: Cannot start application
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: atmar(a)wp.pl
There are two fixmes during start application, then debugger starts:
fixme:msvcrt:_XcptFilter (-1073741819,0x407a08f4)semi-stub
FIXME:pthread_cond_init
and in debugger:
Unhandled exception: page fault on read access to 0xffffffff in 32-bit code
(0xffffffff).
In 32-bit mode.
0xffffffff (COMCTL32.DLL..reloc+0x88c48fff): *** Invalid address 0xffffffff
(COMCTL32.DLL..reloc+0x88c48fff)
-- no code --
It does not metter it is native or builded comctl32.dll
--
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=1373
tim.ruehsen(a)openmediasystem.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tim.ruehsen(a)openmediasystem.de 2003-30-06 03:43 -------
After installing wine 20030619 everything works again.
--
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=1558
catalins(a)vv.carleton.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From catalins(a)vv.carleton.ca 2003-29-06 21:59 -------
This problem has been solved by introducing true Unicode to ANSI conversions
(using the WideCharToMultiByte API) and then using the DEBUG_OutputA to output
the ANSI string.
--
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=1550
catalins(a)vv.carleton.ca changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From catalins(a)vv.carleton.ca 2003-29-06 19:16 -------
Patch included, which sovles 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.