http://bugs.winehq.org/show_bug.cgi?id=2033
sam_herzog(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From sam_herzog(a)yahoo.com 2004-20-02 05:14 -------
I have installed the daily build of 20.Feb.2004 and the problem is gone.
So looks like it is fixed now.
--
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=2040
Summary: ICMP
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: reisch.zoltan(a)photel.hu
Hi all..
When I run an delphi compiled binary under wine , and if I use ping (ICMP) the
wine show a warning and drop the program to debugger.
But it dosn't take when I logged in as Root.
I don't want login as Root for I can ping .
Why must I login as Root for I can use ICMP with wine+winprog ?
--
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=2039
Summary: read float bug in scanf.h in msvcrt.dll.so
Product: Wine
Version: 20040213
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elmkni(a)freenet.de
Hi,
my name is Elmar Knittel (elmkni(a)freenet.de),
and I might have found a little bug in wine :(
I have got SuSE Linux 8.2 personal and
wine-20040213-SuSELinux82.i586.rpm and
wine-20040213-SuSELinux82.src.rpm from
sourceforge.net/projects/wine.
There seems to be problem within the scan functions
in wine-20040213/dlls/msvcrt/scanf.h, line 265/266:
/* get first digit. */
if (!_ISDIGIT_(nch)) break;
break is triggered by decimals without leading digit, e.g:
//---------------------------------------------------------------------
//
// test.c - compile with MinGW under WIN32
//
// DEPEND = test.c
// SHRINK = upx --best --crp-ms=999999 --nrv2b
// CFLAGS = -s -Os -ffast-math -DNDEBUG -mconsole -march=pentium4
// EXE = test.exe
// CC = gcc
//
// .PHONY: $(EXE)
// $(EXE): $(DEPEND)
// $(CC) $(CFLAGS) $? -o$@
// $(SHRINK) $@
//
//---------------------------------------------------------------------
#include <stdio.h>
int main()
{
int i;
static float r,g,b;
const char *s = "0 .7 0";
printf("\n\tBefore: r = %f, g = %f, b = %f",r,g,b);
i = sscanf(s,"%f %f %f",&r,&g,&b);
printf("\n\tAfter : r = %f, g = %f, b = %f",r,g,b);
printf("\n\tBackgroundColorString is: `%s`, Return is: %i\n\n",s,i);
return 0;
}
//---------------------------------------------------------------------
The output of <wine test> should be:
Before: r = 0.000000, g = 0.000000, b = 0.000000
After : r = 0.000000, g = 0.700000, b = 0.000000
BackgroundColorString is: `0 .7 0`, Return is: 3
but actually is:
Before: r = 0.000000, g = 0.000000, b = 0.000000
After : r = 0.000000, g = 0.000000, b = 0.000000
BackgroundColorString is: `0 .7 0`, Return is: 1
where the value of g in line 2 has not changed to 0.700000
and the return value of the sscanf function is 1, not 3.
A possible solution might be to insert:
if (nch == '.') {
cur = 0;
goto HANDLE_DECIMALS;
}
directly after /* get first digit. */
in line 265 of original scanf.h and:
HANDLE_DECIMALS:
directly after /* handle decimals */
in line 276 of original scanf.h.
Probably not the best solution, but it works.
By the way; How do I manage to compile *only*
msvcrt.dll.so? I tried make in the msvcrt-dir,
but just the seperate object files were gene-
rated, not the whole library... so I had to
compile the complete wine-suit in order to
get my patched msvcrt.dll.so ;}
Please, drop me a line, if there is a more
simple way to get a single library. Thanks.
With best regards,
Elmar Knittel, elmkni(a)freenet.de
--
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=2018
------- Additional Comments From reif(a)earthlink.net 2004-19-02 16:03 -------
Could you please create a trace using:
wine --debugmsg +wave,+dsound,+dsound3d program.exe >& trace
where program.exe is your program.
Also, is this native OSS or alsa emulated?
--
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=2029
------- Additional Comments From hatky(a)users.sf.net 2004-19-02 11:00 -------
I see you already know the problem and the fix, why not send a patch of the
change in the make file to wine-devel@winehq,org?
--
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=1958
gillb4(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From gillb4(a)telusplanet.net 2004-19-02 10:51 -------
I use Nvidia drivers with kernel 2.6.3. To resolve this bug, I re-installed
Mesa, gle and Glut (and re-started the X server). I don't know how/why they got
messed up, although I upgrade my system with yum (frequently) and a
library/configuration/path could have been overwritten at some point.
--
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=2032
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |LATER
------- Additional Comments From mike(a)theoretic.com 2004-19-02 06:41 -------
This is a known problem, should be fixed by the upcoming WM rewrite. Alex has
been experimenting lately with another way to fix this as well. For now run the
installer in desktop mode, and the problem should be solved.
--
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=2030
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From mike(a)theoretic.com 2004-19-02 06:40 -------
This is due to IESETUP using its own advapi dll which doesn't implement a
registry function used by our GDI. Unfortunately it still exports it, it simply
calls through (not sure if it's a PE forward or not) to CommonUnimpStub.
Not sure what to about this. In my installer script I simply force advapi to
builtin:
WINEDLLOVERRIDES="advapi32=b" wine ie6setup.exe
for instance
--
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=2031
------- Additional Comments From mike(a)theoretic.com 2004-19-02 06:38 -------
Try setting Wine to emulate NT instead of 9x in the config file
--
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=768
fojtik(a)htc.honeywell.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20020509 |20040213
------- Additional Comments From fojtik(a)htc.honeywell.cz 2004-19-02 03:50 -------
Hi all.
It seems to be a good job, the Micrographic designer seems to start working
with 20040213.
There are another problems: icons are inverted, but a new bug report should be
opened for this. Also several Errors are logged into console.
But it works!
You could test it and close this bug.
--
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.