http://bugs.winehq.org/show_bug.cgi?id=2449
Summary: bug in dlls/kernel/time.c. incorrect time conversion in
TzSpecificLocalTimeToSystemTime
Product: Wine
Version: 20040813
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oradba(a)inbox.ru
a quote from your source:
if (!SystemTimeToFileTime(lpLocalTime, &ft))
return FALSE;
t = ft.dwHighDateTime;
t <<= 32;
t += (UINT)ft.dwLowDateTime;
if (!_GetTimezoneBias(&tzinfo, &lpLocalTime, &lBias))
return FALSE;
you pass LocalTime to _GetTimeZoneBias, instead of systemtime.
Yes, we can't figure if it is daylight or standard time in one hour between
daylight->standard change 02:00-03:00, its ok. In original version
we had such error in Bias+DaylightBias interval (up to 24 hours, 4 hours for
moscow - for example),
so I reduced error period to DaylightBias (1 hour). Now it doesn't depend on time
zone.
my version:
LONGLONG t2;
SYSTEMTIME st;
t2 = t + (LONGLONG)tzinfo.Bias * 600000000;
if (!FileTimeToSystemTime((FILETIME*)&t2, &st))
return FALSE;
if (!_GetTimezoneBias(&tzinfo, &st, &lBias))
return FALSE;
--
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=2448
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2004-26-08 23:54 -------
Hi Philippe. Your report in some degree duplicates bug #2082 [1]. To be clear
your should post all the command-line for wine used to run the Diablo and all
the output the system produces during this run. Better attach them as a text
file so it doesn't get wrapped.
Another interesting info to see would be a versions of your linux kernel, X
server and sound system of your box. Maybe it would be nice also to provide the
name of video module used by your X server. One in my case was "nvidia"
v1.0.6106 (comes from nvidia installer).
And yes, I am going to update my report too. ;-)
[1] http://bugs.winehq.org/show_bug.cgi?id=2082
--
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=2448
Summary: Diablo 1 does not work.
Product: Wine
Version: 20040813
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: z77y16(a)hotmail.com
I got Diablo 1 installed easily, then patched it immediately to 1.09. When I
launch it, I see only a few frames of Blizzard's logo animation, then the screen
goes black. Others have reported they could hear sound in the bg. I don't. But
the game does not freeze. Pressing ESC exits back to the desktop.
--
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=2447
Summary: EM_FINDTEXTEX returns zero for no match
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danielgodson(a)optusnet.com.au
calling CRichEditCtrl::FindText() on an empty control returns 0 when it should
return -1.
the following code, which works okay in windows, goes into an infinite loop
under wine.
FINDTEXTEX fte = { { 0, GetTextLength() - 1 }, "searchstring", {0, 0} };
long lFind = FindText(FR_WHOLEWORD, &fte);
while (lFind != -1)
{
...
}
i've added some logic in my code to handle empty contents so this is not an
immediate problem. also verified that after the change it ran fine.
--
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=1352
us(a)the-edmeades.demon.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |us(a)the-edmeades.demon.co.uk
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2004-25-08 14:57 -------
You need to run in win2k mode, otherwise it traps first
Then you hit a 2nd problem which is a simple wine null pointer exception - See
attached patch
Then it starts - I havent tried anything else, but it did hang on exit (for
me), but you can raise other bugs for any other issue :-)
--
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=2428
us(a)the-edmeades.demon.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |us(a)the-edmeades.demon.co.uk
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
--
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=2156
Bob-winehq(a)HamsterRepublic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bob-
| |winehq(a)hamsterrepublic.com
--
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=1075
Bob-winehq(a)HamsterRepublic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bob-
| |winehq(a)hamsterrepublic.com
--
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=1700
Bob-winehq(a)HamsterRepublic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bob-
| |winehq(a)hamsterrepublic.com
--
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=2308
------- Additional Comments From jhansonxi(a)yahoo.com 2004-25-08 11:47 -------
I forgot to mention that I am using 20040813 compiled from source on Mandrake 10.
--
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.