http://bugs.winehq.org/show_bug.cgi?id=6716
Nikolay Sivov <bunglehead(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #4131|application/octet-stream |text/plain
mime type| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18673
Summary: DateTimePicker not work :( Bug
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yurii_ptz(a)bk.ru
Created an attachment (id=21380)
--> (http://bugs.winehq.org/attachment.cgi?id=21380)
DPT in windowsXP and in wine
Hello!
I try wine 0.9.59 (ubuntu 8.04) wine 1.0.1 (debian) and
wine_1.1.22_winehq1-1_i386.deb (debian)
But DateTimePicker not work.
I try a little programs (Turbo C++ Express) with DateTimePicker
+++
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::DateTimePicker1Change(TObject *Sender)
{
Memo1->Lines->Add("change to "+DateToStr(DateTimePicker1->DateTime)+" ->
"+ BoolToStr(DateTimePicker1->Checked));
}
//---------------------------------------------------------------------------
+++
And test it in WindowsXP and Wine.
If i run my programm in WindowsXP and change date from 2009.05.28 to 2009.05.24
in DateTimePicker it write:
change to 27.05.2009 -> -1
change to 27.05.2009 -> -1
change to 26.05.2009 -> -1
change to 26.05.2009 -> -1
change to 25.05.2009 -> -1
change to 25.05.2009 -> -1
change to 24.05.2009 -> -1
change to 24.05.2009 -> -1
If i run my programm in Wine and change date from 2009.05.28 to 2009.05.24 in
DateTimePicker it write:
change to 28.05.2009 -> -1
change to 28.05.2009 -> -1
change to 28.05.2009 -> -1
change to 28.05.2009 -> -1
And in WINE DateTimePicker not work :(
Bugs PrintScreen i attachment to this report
Thank you!
PS: Sory for my bad English
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20322
Summary: DX Atlas does not start
Product: Wine
Version: 1.1.30
Platform: PC
URL: http://www.dxatlas.com/DxAtlas/Files/DxAtlas.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rx9tx(a)qrz.ru
CC: rx9tx(a)qrz.ru
DX Atlas does not start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20315
Summary: PEB not fully initialized, causes valgrind warnings
during thread initialization?
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, patch, source
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Running wine's tests under valgrind yields warnings of the sort (after applying
the patch in bug 20303):
Syscall param socketcall.sendmsg(msg.msg_iov[i]) points to uninitialised
byte(s)
at: sendmsg (socket.S:64)
by: server_init_thread (server.c:1061)
by: thread_init (thread.c:325)
by: __wine_process_init (loader.c:2695)
by: wine_init (loader.c:711)
by: main (main.c:218)
Address 0xfe924c48 is on thread 1's stack
Uninitialised value was created by a client request
at: inform_valgrind_of_new_virtual_memory_block (virtual.c:1725)
by: NtAllocateVirtualMemory (virtual.c:1878)
by: thread_init (thread.c:307)
by: __wine_process_init (loader.c:2695)
by: wine_init (loader.c:711)
by: main (main.c:218)
and
Conditional jump or move depends on uninitialised value(s)
at: get_modref (loader.c:293)
by: load_dll (loader.c:1944)
by: LdrLoadDll (loader.c:2025)
by: load_library (module.c:890)
by: LoadLibraryExW (module.c:947)
by: __wine_kernel_init (process.c:1087)
by: wine_init (loader.c:711)
by: main (main.c:218)
Uninitialised value was created by a client request
at: inform_valgrind_of_new_virtual_memory_block (virtual.c:1725)
by: NtAllocateVirtualMemory (virtual.c:1878)
by: thread_init (thread.c:276)
by: __wine_process_init (loader.c:2695)
by: wine_init (loader.c:711)
by: main (main.c:218)
I didn't look too far, but it seems that the PEB isn't fully
initialized and/or has holes that might need a valgrind annotation.
Memsetting them to zero right after allocation makes the
warnings go away. (The right fix would be to figure out which
fields still need initialization.)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20316
Summary: init_user_process_params() forgets to initialize
CurrentDirectory.Handle, causing uninitialized memory
reference in init_current_directory()
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, patch, source
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Once you are past bug 20303 and bug 20315, the commands
cd dlls/advapi32/tests
/usr/local/valgrind-10896/bin/valgrind --trace-children=yes --track-origins=yes
--workaround-gcc296-bugs=yes ~/wine-git/wine advapi32_test.exe.so security.c
produce the valgrind warning
Conditional jump or move depends on uninitialised value(s)
at RtlSetCurrentDirectory_U (path.c:992)
by init_current_directory (process.c:769)
by __wine_kernel_init (process.c:1036)
by __wine_process_init (loader.c:2719)
Uninitialised value was created by a client request
at inform_valgrind_of_new_virtual_memory_block (virtual.c:1724)
by NtAllocateVirtualMemory (virtual.c:1870)
by init_user_process_params (thread.c:186)
by thread_init (thread.c:340)
by __wine_process_init (loader.c:2695)
It seems the field CurrentDirectory.Handle is not initialized
in init_user_process_params(). Adding the line
params->CurrentDirectory.Handle = INVALID_HANDLE_VALUE;
around line 200 of dlls/ntdll/thread.c works and is probably
even the right fix.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20107
Summary: Two keyboard bugs in World of Warcraft
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: henu(a)henu.fi
For several latest versions, I have noticed two keyboard problems when running
WoW.
First and more annoying: When returning from other applications to WoW
fullscreen mode, writing does not work. This happens randomly. The keys work
for everything else, for example I can use WASD for moving, but I cannot type
with them! This can be fixed by going again to other application/desktop and
then returning to WoW.
Second and not that annoying: When I move my character by pressing a key, the
character starts to "shake" after some time (the running animation starts from
the beginning over and over again). I think this has something to do with key
repeat, since the "shaking" acts like key repeat when typing.
I submitted these two bugs in one report, because if I remember correctly,
their first appearance was about at the same time. Maybe they are actually just
one bug. It was several Wine versions ago, but I'm not sure if it's Wine's or
WoW's fault.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19501
Summary: Crysis Warhead: Crash when loading a map.
Product: Wine
Version: 1.1.26
Platform: PC-x86-64
URL: http://crysiswarhead.ea.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: telliangun(a)gmail.com
Created an attachment (id=22677)
--> (http://bugs.winehq.org/attachment.cgi?id=22677)
terminal output throughout the process
uname -svrpio
Linux 2.6.30-gentoo-r4 #1 SMP PREEMPT Mon Jul 27 02:35:42 EEST 2009 Intel(R)
Core(TM)2 Duo CPU E8400 @ 3.00GHz GenuineIntel GNU/Linux
Crysis Warhead is crashing every time it loads a map, around 70-80 % of
loading.
I managed to load a map once, but I guess it was pure luck as when I tried
afterwards it kept crashing.
I've attached the terminal output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6003
Vitaliy Margolen <vitaliy(a)kievinfo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |REOPENED
Resolution|FIXED |
--- Comment #14 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2009-10-10 21:06:28 ---
The problem is back (in wine-1.1.30), reopening.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=421
max(a)veneto.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #21242|0 |1
is obsolete| |
--- Comment #296 from max(a)veneto.com 2009-10-10 17:04:37 ---
Created an attachment (id=24018)
--> (http://bugs.winehq.org/attachment.cgi?id=24018)
DIB Engine - Fixed for wine-1.1.31
Crash was due to (from wine-1.1.31) suppressed winex11.drv BitBlt() and
PatBlt() functions, replaced by StretchBlt().
The bug search was made somehow difficult because of misleading git comment on
offending commit, which is doing more than what comment say.
I'm posting here the fixed engine, as usual in stacked-git format.
Ciao
Max
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=6856
Daniel Guzman <daniel.guzman85(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |daniel.guzman85(a)gmail.com
--- Comment #29 from Daniel Guzman <daniel.guzman85(a)gmail.com> 2009-10-10 15:09:20 ---
Yes, it's still a issue. I can confirm it:
Civilization 4 DVD original.
Install= No problems.
Patching to 1.74 = No problems.
Running the game 1.0 or 1.74, give me that output:
dani@JumpGate:~/.wine/drive_c/Program Files/Firaxis Games/Sid Meier's
Civilization 4$ wine --version
wine-1.1.30
dani@JumpGate:~/.wine/drive_c/Program Files/Firaxis Games/Sid Meier's
Civilization 4$ wine Civilization4.exe
fixme:service:QueryServiceObjectSecurity 0x13f760 4 0x13fe30 0 0x32eee0 -
semi-stub
fixme:service:QueryServiceObjectSecurity 0x13f760 4 0x13fe30 28 0x32eee0 -
semi-stub
fixme:advapi:SetEntriesInAclA 1 0x32ee70 0x13fe44 0x32eedc
fixme:service:SetServiceObjectSecurity 0x13f760 4 0x32ee5c
fixme:system:SystemParametersInfoW Unimplemented action: 55 (SPI_SETMOUSEKEYS)
fixme:system:SystemParametersInfoW Unimplemented action: 59 (SPI_SETSTICKYKEYS)
fixme:font:WineEngRemoveFontResourceEx :stub
If you need more information just tell me the full command :). Im a newbie in
bug submitting xD.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.