http://bugs.winehq.org/show_bug.cgi?id=26262
Summary: No video output in game
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: torgeriedel(a)gmx.de
When trying to play Commandos - Behind Enemy lines, there is no video output.
Sound is working.
--
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=33368
Bug #: 33368
Summary: WM_DEADCHAR events not sent
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sloonz(a)gmail.com
Classification: Unclassified
Created attachment 44152
--> http://bugs.winehq.org/attachment.cgi?id=44152
Keyboard traces in three different scenarios (Windows, Wine, Wine+patch)
XFilterEvent() returns true for events of dead keys, so they are not processed
by wine. However, that prevents sending a WM_DEADCHAR event to the application,
as it works on Windows. For example, in order to emit a "ê" character in a
french keyboard layout, I first have to press ^ (which is a dead key) and then
e. Under Windows, this leads to the following sequence of events :
KEYDOWN: dead_circumflex
DEADCHAR: dead_circumflex
KEYDOWN: e
CHAR: ê
KEYUP: e
KEYUP: dead_circumflex
Under wine I have only those events :
KEYUP: dead_circumflex
KEYDOWN: e
CHAR: ê
Attached patch fixes most of that, with it I get :
KEYDOWN: dead_circumflex
DEADCHAR: dead_circumflex
UP: dead_circumflex
KEYDOWN: e
CHAR: ê
KEYUP: e
Note that it’s still slighty different from Windows (KEYUP for dead key is
third message on Wine, whereas it is before the last one on Windows), but I
don’t see a clean fix for this issue.
As for the traces in attachment, contains three traces. The first one is from
Spy++ on Windows ; the second is the relevant output of WINEDEBUG=+msg notepad
for unpatched wine ; the third one for patched wine.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36095
Bug ID: 36095
Summary: valgrind errors in loader when loading a dll
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: major
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Noticed this in most tests, there are at least 3 places. 1:
==11164== 26 bytes in 1 blocks are definitely lost in loss record 57 of 244
==11164== at 0x7BC4C735: notify_alloc (heap.c:255)
==11164== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==11164== by 0x7BC758B6: RtlCreateUnicodeString (rtlstr.c:281)
==11164== by 0x7BC54CF3: alloc_module (loader.c:919)
==11164== by 0x7BC566CB: load_builtin_callback (loader.c:1519)
==11164== by 0x40192DE: __wine_dll_register (loader.c:517)
==11164== by 0x7B88A18B: __wine_spec_init (init.c:35)
==11164== by 0x4E850459: call_init.part.0 (in /usr/lib/ld-2.18.so)
==11164== by 0x4E850593: _dl_init (in /usr/lib/ld-2.18.so)
==11164== by 0x4E854953: dl_open_worker (in /usr/lib/ld-2.18.so)
==11164== by 0x4E850329: _dl_catch_error (in /usr/lib/ld-2.18.so)
==11164== by 0x4E854013: _dl_open (in /usr/lib/ld-2.18.so)
==11164== by 0x4EA25CBB: dlopen_doit (in /usr/lib/libdl-2.18.so)
==11164== by 0x4E850329: _dl_catch_error (in /usr/lib/ld-2.18.so)
==11164== by 0x4EA263CB: _dlerror_run (in /usr/lib/libdl-2.18.so)
==11164== by 0x4EA25D70: dlopen@@GLIBC_2.1 (in /usr/lib/libdl-2.18.so)
==11164== by 0x4019898: wine_dlopen (loader.c:1029)
==11164== by 0x4018C06: dlopen_dll (loader.c:295)
==11164== by 0x4019532: wine_dll_load (loader.c:581)
==11164== by 0x7BC57199: load_builtin_dll (loader.c:1732)
==11164==
2:
==11164== 32 bytes in 1 blocks are possibly lost in loss record 65 of 244
==11164== at 0x7BC4C735: notify_alloc (heap.c:255)
==11164== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==11164== by 0x7BC76348: RtlAnsiStringToUnicodeString (rtlstr.c:689)
==11164== by 0x7BC7595F: RtlCreateUnicodeStringFromAsciiz (rtlstr.c:302)
==11164== by 0x7BC5B407: init_load_order (loadorder.c:252)
==11164== by 0x7BC5B9FB: get_load_order (loadorder.c:440)
==11164== by 0x7BC58099: load_dll (loader.c:2045)
==11164== by 0x7BC585B7: LdrLoadDll (loader.c:2125)
==11164== by 0x7B85A79A: load_library (module.c:933)
==11164== by 0x7B85A908: LoadLibraryExW (module.c:990)
==11164== by 0x7B8649B8: __wine_kernel_init (process.c:1230)
==11164== by 0x7BC5ACA9: __wine_process_init (loader.c:3103)
==11164== by 0x4019864: wine_init (loader.c:952)
==11164== by 0x7BF011AD: main (main.c:237)
==11164==
3:
==11165== 20 bytes in 1 blocks are definitely lost in loss record 14 of 58
==11165== at 0x7BC4C735: notify_alloc (heap.c:255)
==11165== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==11165== by 0x7BC758B6: RtlCreateUnicodeString (rtlstr.c:281)
==11165== by 0x7BC54CF3: alloc_module (loader.c:919)
==11165== by 0x7BC566CB: load_builtin_callback (loader.c:1519)
==11165== by 0x40193D9: wine_dll_set_callback (loader.c:548)
==11165== by 0x7BC5ABA2: __wine_process_init (loader.c:3086)
==11165== by 0x4019864: wine_init (loader.c:952)
==11165== by 0x7BF011AD: main (main.c:237)
==11165==
4:
==11194== 32 bytes in 1 blocks are possibly lost in loss record 66 of 248
==11194== at 0x7BC4C735: notify_alloc (heap.c:255)
==11194== by 0x7BC50F79: RtlAllocateHeap (heap.c:1716)
==11194== by 0x7BC76348: RtlAnsiStringToUnicodeString (rtlstr.c:689)
==11194== by 0x7BC7595F: RtlCreateUnicodeStringFromAsciiz (rtlstr.c:302)
==11194== by 0x7BC5B407: init_load_order (loadorder.c:252)
==11194== by 0x7BC5B9FB: get_load_order (loadorder.c:440)
==11194== by 0x7BC58099: load_dll (loader.c:2045)
==11194== by 0x7BC585B7: LdrLoadDll (loader.c:2125)
==11194== by 0x7B85A79A: load_library (module.c:933)
==11194== by 0x7B85A908: LoadLibraryExW (module.c:990)
==11194== by 0x7B8649B8: __wine_kernel_init (process.c:1230)
==11194== by 0x7BC5ACA9: __wine_process_init (loader.c:3103)
==11194== by 0x4019864: wine_init (loader.c:952)
==11194== by 0x7BF011AD: main (main.c:237)
==11194==
(tested running advapi32/security.c)
wine-1.7.17-92-ge2bf516
--
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=17488
Summary: Animation issues in 4Story
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: killzenator(a)gmail.com
Created an attachment (id=19581)
--> (http://bugs.winehq.org/attachment.cgi?id=19581)
Output of "wine 4Story.exe >> log.txt 2>&1"
In 4Story none of the character/npcs have animations, weapons move up and down
like their supposed to when you walk, characters stay the same.
--
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=35603
Bug ID: 35603
Summary: Wine64 build produces extra warning in setupapi
comparing to Wine32 build
Product: Wine
Version: 1.7.12
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: setupapi
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Classification: Unclassified
Created attachment 47552
--> http://bugs.winehq.org/attachment.cgi?id=47552
64bit build log
Similarly to bug 35602, but this time for setupapi:
* warning: cast from pointer to integer of different size
--
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=32251
Bug #: 32251
Summary: ... i dont know
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dandazadiego(a)gmail.com
Classification: Unclassified
>Runes of magic cant run.
I followed the instructions you have given and I'll get up in the middle of the
game and update locks. how do I?
--
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=24963
Summary: Okad2: Unhandled page fault at address 0x00007f8a
during startup
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pandolfo(a)gis.net
Created an attachment (id=31617)
--> (http://bugs.winehq.org/attachment.cgi?id=31617)
a description of the page fault plus an annotated backtrace
During program startup, Okad2-xx-pd (xx = version) generates an unhandled page
fault when loading an icon. The page fault is caused by CreateFileW as it
processes the name of the file from the parameter list. The name pointer is
0x00007f8a, which is an address in an unmapped page. This value is also an
index into Windows resources, selecting the hourglass icon.
What has happened is that the application was attempting to load the hourglass
icon and passed in BOTH the Windows resource index and a flag indicating
LOADFROMFILE. Wine attempted to load-from-file and looked for the file name
through the "name" parameter (0x00007f8a) generating the page fault. Native
Windows appears to give the value of the "name" pointer precedence and
determines that the "name" parameter is actually a resource number; hence it
does not page fault and runs Okad2 normally.
Wine *DOES* check the "name" parameter to see if it is a resource index, but
several subroutine calls later it forgets this fact and branches based on the
LOADFROMFILE bit. The backtrace has been annotated to provide both a
description and source lines involved in the decision.
This behavior was found in the latest version of Wine for Debian (.1.42) and in
a MacOS X version.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36587
Bug ID: 36587
Summary: valgrind shows uninitialized memory use in
user32/tests/winstation.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
../../../tools/runtest -q -P wine -T ../../.. -M user32.dll -p
user32_test.exe.so winstation && touch winstation.ok
preloader: Warning: failed to reserve range 00110000-68000000
preloader: Warning: failed to reserve range 7f000000-82000000
==25156== Syscall param write(buf) points to uninitialised byte(s)
==25156== at 0x4226CF3: __write_nocancel (syscall-template.S:81)
==25156== by 0x7BC7FD72: send_request (server.c:198)
==25156== by 0x7BC7FF91: wine_server_call (server.c:294)
==25156== by 0x519D2EE: send_hardware_message (message.c:3331)
==25156== by 0x5173BEB: SendInput (input.c:185)
==25156== by 0x4D9FB49: test_inputdesktop (winstation.c:530)
==25156== by 0x4DA2430: func_winstation (winstation.c:939)
==25156== by 0x4DA3978: run_test (test.h:584)
==25156== by 0x4DA3D67: main (test.h:654)
==25156== Address 0x510f6a8 is on thread 1's stack
==25156== Uninitialised value was created by a stack allocation
==25156== at 0x4D9F748: test_inputdesktop (winstation.c:492)
==25156==
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36636
Bug ID: 36636
Summary: valgrind shows an uninitialized write in
shell32/tests/appbar.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==20270== Syscall param writev(vector[...]) points to uninitialised byte(s)
==20270== at 0x4E952886: writev (in /usr/lib/libc-2.18.so)
==20270== by 0x7BC7FE6F: send_request (server.c:213)
==20270== by 0x7BC80001: wine_server_call (server.c:294)
==20270== by 0x5254AF8: put_message_in_queue (message.c:3141)
==20270== by 0x5254EA9: send_inter_thread_message (message.c:3209)
==20270== by 0x525518A: send_message (message.c:3277)
==20270== by 0x52555D1: SendMessageTimeoutW (message.c:3414)
==20270== by 0x4D221BC: SHAppBarMessage (appbar.c:142)
==20270== by 0x4A59513: test_setpos (appbar.c:222)
==20270== by 0x4A5ABF9: func_appbar (appbar.c:442)
==20270== by 0x4AB44E4: run_test (test.h:584)
==20270== by 0x4AB48D3: main (test.h:654)
==20270== Address 0x4cdfb20 is on thread 1's stack
==20270== Uninitialised value was created by a stack allocation
==20270== at 0x4A5940F: test_setpos (appbar.c:203)
==20270==
--
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=26044
Summary: atl/atl_ax tests show several valgrind warnings
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Most seem related to:
Conditional jump or move depends on uninitialised value(s)
at USER_SetWindowPos (winpos.c:2039)
by SetWindowPos (winpos.c:2141)
by activate_inplace (oleobject.c:148)
by OleObject_DoVerb (oleobject.c:454)
by IOCS_Init (atl_ax.c:919)
by IOCS_Create (atl_ax.c:952)
by AtlAxAttachControl (atl_ax.c:1091)
by test_AtlAxAttachControl (atl_ax.c:96)
by func_atl_ax (atl_ax.c:127)
by run_test (test.h:556)
by main (test.h:624)
Uninitialised value was created by a stack allocation
at IOCS_Init (atl_ax.c:911)
there's also:
64 bytes in 1 blocks are definitely lost
at notify_alloc (heap.c:254)
by RtlAllocateHeap (heap.c:1701)
by IOCS_Create (atl_ax.c:934)
by AtlAxAttachControl (atl_ax.c:1091)
by test_AtlAxAttachControl (atl_ax.c:96)
by func_atl_ax (atl_ax.c:127)
by run_test (test.h:556)
by main (test.h:624)
64 bytes in 1 blocks are definitely lost
at notify_alloc (heap.c:254)
by RtlAllocateHeap (heap.c:1701)
by IOCS_Create (atl_ax.c:934)
by AtlAxAttachControl (atl_ax.c:1091)
by test_AtlAxAttachControl (atl_ax.c:109)
by func_atl_ax (atl_ax.c:127)
by run_test (test.h:556)
by main (test.h:624)
and perhaps a few more. I'll attach the full log.
--
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=23526
Summary: Daytona USA Evolutions: menu bar shows in fullscreen,
doesn't in windows
Product: Wine
Version: 1.2-rc6
Platform: x86
URL: http://sega.jp/pc/daytonae/trial.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=29368)
--> (http://bugs.winehq.org/attachment.cgi?id=29368)
screenshot
It's an old Direct 6.1 game...luckily, it's got a free download (only 42 mb).
Run the game. It'll start in fullscreen, but its toolbar shows at the top of
the screen. In windows, it doesn't appear, unless you press 'Alt'.
Terminal output is pretty short:
fixme:win:EnumDisplayDevicesW ((null),0,0x33f1a8,0x00000000), stub!
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x163a00,0x1641c8): stub
austin@laptop:~/.wine/drive_c$ fixme:d3d:swapchain_init The application
requested more than one back buffer, this is not properly supported.
Please configure the application to use double buffering (1 back buffer) if
possible.
fixme:heap:RtlCompactHeap (0x110000, 0x0) stub
err:ole:CoUninitialize Mismatched CoUninitialize
--
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=35666
Bug ID: 35666
Summary: HEDZ crashes on startup
Product: Wine
Version: 1.6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cweiske(a)cweiske.de
Created attachment 47627
--> http://bugs.winehq.org/attachment.cgi?id=47627
hedz 1.6.1 crash
When starting HEDZ (aka H.E.D.Z.) using
$ xinit /usr/bin/wine HEDZ.EXE -- :1 -ac -depth 16
I get a crash "Unhandled exception: page fault on read access to 0x00000000 in
32-bit code (0x7d6be628)."
--
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=27124
Summary: Happy Cloud can't download game
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Their plugin seems to install ok.
winetricks ie6 or ie7 are needed for the web page to show up (ie7 looks
better),
you can request an account and log in ok,
and you can "purchase" one of the free demos in that web page,
but when you try to play, it complains
"The game requires that you have the latest version of Happy Cloud installed."
--
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.
https://bugs.winehq.org/show_bug.cgi?id=37561
Bug ID: 37561
Summary: Skype cannot access web camera
Product: Wine
Version: 1.7.31
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: t.artem(a)mailcity.com
Distribution: Red Hat
Here's what can be seen in console when you try to use web camera:
err:d3d:context_create Failed to set pixel format 1 on device context 0x10071.
err:d3d:context_choose_pixel_format Can't find a suitable iPixelFormat
err:d3d:context_create Failed to set pixel format 1 on device context 0x20081.
fixme:d3d:wined3d_get_format Can't find format WINED3DFMT_R24_UNORM_X8_TYPELESS
(0x49) in the format lookup table
fixme:d3d:getDepthStencilBits Unsupported depth/stencil format
WINED3DFMT_UNKNOWN.
err:d3d:context_create Failed to set pixel format 25 on device context 0x2009d.
err:d3d:context_create Failed to set pixel format 13 on device context
0xba00cf.
err:d3d:context_choose_pixel_format Can't find a suitable iPixelFormat
err:d3d:context_create Failed to set pixel format 1 on device context
0x1b500bb.
fixme:d3d9:D3DPERF_SetOptions (0x1) : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x32ee08,0x00000000), stub!
err:d3d:context_create Failed to set pixel format 1 on device context
0x22d00d2.
err:d3d:context_choose_pixel_format Can't find a suitable iPixelFormat
err:d3d:context_create Failed to set pixel format 1 on device context 0x6f00fd.
fixme:d3d:wined3d_get_format Can't find format WINED3DFMT_R24_UNORM_X8_TYPELESS
(0x49) in the format lookup table
fixme:d3d:getDepthStencilBits Unsupported depth/stencil format
WINED3DFMT_UNKNOWN.
err:d3d:context_create Failed to set pixel format 25 on device context 0x80111.
err:d3d:context_create Failed to set pixel format 13 on device context 0xa0112.
err:d3d:context_choose_pixel_format Can't find a suitable iPixelFormat
err:d3d:context_create Failed to set pixel format 1 on device context 0x10118.
P.S. Make sure you deleted login.cab before trying to debug this issue (proper
HTML support is not yet there, see bug 28457).
Skype version: 6.21.32.104
--
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=36816
Bug ID: 36816
Summary: Xenonauts 1.06 always crash when I defeat an ufo with
a F-17 condor
Product: Wine
Version: 1.7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hiretto(a)gmail.com
Hello,
It's a pretty annoying bug because it's happen always when I defeat an ufo in
air combat mode.
Because of this I can't continue with the game :(
I attached a log
--
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=30311
Bug #: 30311
Summary: nfsmwres - The installer of the screen resolution no
NFS Most Wonted
Product: Wine
Version: 1.5.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vova7890(a)mail.ru
Classification: Unclassified
Created attachment 39615
--> http://bugs.winehq.org/attachment.cgi?id=39615
TraceBack
Run nfsmwres.exe, set own resolution, press start. Then game starting and
segfault. Traceback in attach
--
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=36883
Bug ID: 36883
Summary: Euro Truck Simulator 2: Game crashes after logo
screen.
Product: Wine
Version: 1.7.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: raddyroro(a)gmail.com
Whenever I load up the game, the loo will show and then the game will crash
--
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=35162
Bug ID: 35162
Summary: F-secure Younited: Client crashes when adding files
Product: Wine
Version: 1.7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jaska2000(a)hotmail.com
Classification: Unclassified
Wine crashes when trying to add files to the cloud service. Both drag & drop
and adding via dialogs causes crash. Looks like most crashes are related to
addding / handling files.
Sometimes it crashes without backtrace window and sometimes it gives backtrace
information. I attached text file with console outputs and backtrace of few
unsuccesfulll attemtps to upload files to the cloud.
Software download link: https://download.sp.f-secure.com/younited/younited.exe
Installer: d01cbfcc38c80a1239308b6cc149a9d72532e7ad younited.exe
Installed exe: 887d641b7295537b920d2f91ad05e859bd62d284 younited.exe
--
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=34427
Bug #: 34427
Summary: Star Citizen launcher has several graphics issues
Product: Wine
Version: 1.7.1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
Created attachment 45828
--> http://bugs.winehq.org/attachment.cgi?id=45828
Screenshot on wine-1.7.1
Lots of hsls/d3dcompiler spam:
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
Screenshots and log attached
--
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=29024
Bug #: 29024
Summary: K!TV crashes on selecting capture source - v4l headers
were not available
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: testing.tigerwolf(a)mail.com
Classification: Unclassified
Created attachment 37371
--> http://bugs.winehq.org/attachment.cgi?id=37371
K!TV crashes on selecting capture source
capture source : WDM (generic)
Problem with v4l headers ?
see attachement
--
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=32463
Bug #: 32463
Summary: Font artefacts in Path of Exile
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: julusp(a)gmail.com
Classification: Unclassified
Created attachment 42822
--> http://bugs.winehq.org/attachment.cgi?id=42822
Font distortion
The font in the path of exile produces artefacts/distortion as in the
screenshot. (The font on screenshot is substituted to arial). In the original
font (fontin) some of the italic words are almost impossible to read because of
the distortion.
--
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=20632
Summary: Windows Picasa cannot order photos
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jake.msstate(a)gmail.com
When trying to order pictures (Shop) through the Windows version of Picasa
(specifically 3.1.0 Build 71.4300,0), the application brings up an empty list
of providers.
The URL that it is trying to bring up is
https://client4.google.com/providers/printers.html
--
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=23318
Summary: Bus Simulator 2008 (demo) complains about insufficient
memory on startup
Product: Wine
Version: 1.2-rc4
Platform: x86
URL: http://www.gamershell.com/download_25660.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: julliard(a)winehq.org
Created an attachment (id=29068)
--> (http://bugs.winehq.org/attachment.cgi?id=29068)
console log when the demo crashes
Wine pops up an error dialogue when starting Bus Simulator 2008 (at least the
demo I can test):
'Error E1004: Not enough memory (50 MB required)!' Afterwards Wine crashes.
The game was rated to Gold in AppDB by the submitter, using 1.1.4. After trying
out several Wine versions it turned out the game doesn't crash when using
Wine-1.1.24 or any earlier versions.
Result of regression testing:
09712593c8496be5e952b7316099f9eed5043203 is the first bad commit
commit 09712593c8496be5e952b7316099f9eed5043203
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Jun 25 14:18:53 2009 +0200
ntdll: Release some address space after the process initialization is done.
:040000 040000 25715d0c052bc6bbc0262c742ad285d17a78f236
aa973aa3e5286174dcbffd782691d09bd9109e5d M dlls
The commit cannot be reverted even on the top of the nearest 1.1.25 version,
but after
git checkout 09712593c8496be5e952b7316099f9eed5043203 >> the game crashes
git revert 09712593c8496be5e952b7316099f9eed5043203 >> the game starts up
correctly.
There are other bugreports mentioning the same commit: bug #21198, bug #20986,
bug #21630 and bug #22187.
Author of the patch added to CC.
Link to the demo added to url.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36283
Bug ID: 36283
Summary: valgrind shows an invalid read in imm32/tests/imm32.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: imm32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==28442== Invalid read of size 4
==28442== at 0x400AD40: memcpy (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==28442== by 0x4ED078F6: FT_Stream_ReadAt (in
/usr/lib/libfreetype.so.6.10.2)
==28442== by 0x4ED45CA7: ??? (in /usr/lib/libfreetype.so.6.10.2)
==28442== by 0x4ED06223: FT_Load_Sfnt_Table (in
/usr/lib/libfreetype.so.6.10.2)
==28442== by 0x50B72E9: get_font_data (freetype.c:4422)
==28442== by 0x50B89E7: get_gasp_flags (freetype.c:4873)
==28442== by 0x50BAF28: freetype_SelectFont (freetype.c:5489)
==28442== by 0x54C7F20: X11DRV_SelectFont (init.c:319)
==28442== by 0x54FE488: xrenderdrv_SelectFont (xrender.c:858)
==28442== by 0x50A1F7F: FONT_SelectObject (font.c:723)
==28442== by 0x50C5C37: SelectObject (gdiobj.c:1174)
==28442== by 0x4B70F46: get_text_metr_size (sysparams.c:472)
==28442== by 0x4B717AC: normalize_nonclientmetrics (sysparams.c:634)
==28442== by 0x4B73F45: SystemParametersInfoW (sysparams.c:1583)
==28442== by 0x4B77496: GetSystemMetrics (sysparams.c:2414)
==28442== by 0x4B77647: GetSystemMetrics (sysparams.c:2433)
==28442== by 0x4B8D9D7: WINPOS_GetMinMaxInfo (winpos.c:774)
==28442== by 0x4B859BB: WIN_CreateWindowEx (win.c:1568)
==28442== by 0x4B862E0: CreateWindowExA (win.c:1719)
==28442== by 0x4967EC9: test_ImmDefaultHwnd (imm32.c:708)
==28442== Address 0x582d5fc is on thread 1's stack
==28442==
--
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.