https://bugs.winehq.org/show_bug.cgi?id=39192
Bug ID: 39192
Summary: Warhammer 40k: Dawn of War II – Retribution (Steam)
needs msvcr80.dll._wctime32_s
Product: Wine
Version: 1.7.50
Hardware: x86
URL: http://store.steampowered.com/app/56437/
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 52245
--> https://bugs.winehq.org/attachment.cgi?id=52245
terminal output
The game loads to the main menu properly, I can change options and enter the
multiplayer menu, but the game crashes when I open the single-player campaign
menu:
>wine: Call from 0x7b839b3c to unimplemented function msvcr80.dll._wctime32_s, aborting
'winetricks vcrun2005' is a workaround.
Mscodescan output:
./Localizer.dll imports following stub symbols:
msvcr80:_wctime32_s
wine-1.7.50-194-g99ecebe
--
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=36876
Bug ID: 36876
Summary: Incorrect check for bad points in draw_poly()
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: maksqwe1(a)ukr.net
graphics.c 1751
if((i + 2 >= count)
|| !(types[i + 1] & PathPointTypeBezier)
|| !(types[i + 1] & PathPointTypeBezier)) {
I think should be:
if((i + 2 >= count)
|| !(types[i + 1] & PathPointTypeBezier)
|| !(types[i + 2] & PathPointTypeBezier)) {
--
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=36422
Bug ID: 36422
Summary: valgrind shows several possible leaks in
qcap/tests/qcap.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==25903== 28 bytes in 1 blocks are possibly lost in loss record 174 of 618
==25903== at 0x7BC50A9B: RtlAllocateHeap (heap.c:255)
==25903== by 0x52FCBB8: apartment_getclassobject (compobj.c:526)
==25903== by 0x52FFFC6: get_inproc_class_object (compobj.c:2894)
==25903== by 0x5302D2F: CoGetClassObject (compobj.c:3032)
==25903== by 0x53034B7: CoCreateInstance (compobj.c:3197)
==25903== by 0x4D577C2: test_smart_tee_filter (qcap.c:108)
==25903== by 0x4D5BF82: func_qcap (qcap.c:2088)
==25903== by 0x4D5D4AC: run_test (test.h:584)
==25903== by 0x4D5D89A: main (test.h:654)
==25903==
--
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=34750
Bug #: 34750
Summary: Eleusis Demo some landscape parts are black rendered
Product: Wine
Version: 1.7.4
Platform: x86
URL: http://www.gamershell.com/download_99777.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 46329
--> http://bugs.winehq.org/attachment.cgi?id=46329
screenshot
See attached screenshot.
--
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=38779
Bug ID: 38779
Summary: Homeworld 2: unusually long loading time (with
built-in msvcr70)
Product: Wine
Version: 1.7.17
Hardware: x86
URL: http://www.fileplanet.com/129916/120000/fileinfo/Homew
orld-2---Demo
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: piotr.caban(a)gmail.com
Regression SHA1: 3a7bf4a34b82f1857f40f482890e148d7dd9e30a
Distribution: ---
Homeworld 2 demo loads to the main menu in no time, but starting a
single-player mission takes ~40 secs on my system. For comparison, loading the
mission in the demo takes only ~5 secs with native msvcr70.dll.
Reducing detail level doesn't affect loading times.
The demo comes bundled with it's own msvcp70,msvcr70 libraries, a workaround is
to override msvcr70 to native.
The problem is present since
commit 3a7bf4a34b82f1857f40f482890e148d7dd9e30a
Author: Piotr Caban <piotr(a)codeweavers.com>
Date: Fri Apr 18 12:33:37 2014 +0200
msvcr70: Share the source code with msvcrt.
To reproduce the problem with the demo version:
1. install the demo, start the game with ../Bin/Release/Homeworld2.exe
-nopbuffer
(on my system the demo must be started with '-nopbuffer' option otherwise it
crashes on start).
2. the game shows a couple of logos and loads to the main menu in no time.
3. start the only available single-player mission. It takes ~40 secs on my
system to load the mission with built-in msvcr70.
wine-1.7.45-126-g6fe5546
Fedora 22 x86
--
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=38678
Bug ID: 38678
Summary: valgrind shows uninitialized value
dlls/kernel32/tests/path.c:test_CheckNameLegalDOS8Dot3
Product: Wine
Version: 1.7.44
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Fedora
==15348== Conditional jump or move depends on uninitialised value(s)
==15348== at 0x7BC62AFD: RtlIsNameLegalDOS8Dot3 (path.c:872)
==15348== by 0x7B85D779: CheckNameLegalDOS8Dot3W (path.c:2077)
==15348== by 0x483CE55: test_CheckNameLegalDOS8Dot3 (path.c:2192)
==15348== by 0x483D273: func_path (path.c:2240)
==15348== by 0x4893BD4: run_test (test.h:584)
==15348== by 0x489401C: main (test.h:666)
==15348== Uninitialised value was created by a stack allocation
==15348== at 0x7BC62A86: RtlIsNameLegalDOS8Dot3 (path.c:851)
==15348==
==15348== Conditional jump or move depends on uninitialised value(s)
==15348== at 0x7BC62AFD: RtlIsNameLegalDOS8Dot3 (path.c:872)
==15348== by 0x7B85D779: CheckNameLegalDOS8Dot3W (path.c:2077)
==15348== by 0x7B85D68F: CheckNameLegalDOS8Dot3A (path.c:2050)
==15348== by 0x483CFE2: test_CheckNameLegalDOS8Dot3 (path.c:2200)
==15348== by 0x483D273: func_path (path.c:2240)
==15348== by 0x4893BD4: run_test (test.h:584)
==15348== by 0x489401C: main (test.h:666)
==15348== Uninitialised value was created by a stack allocation
==15348== at 0x7BC62A86: RtlIsNameLegalDOS8Dot3 (path.c:851)
--
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=6416
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #21 from Alexandre Julliard <julliard(a)winehq.org> ---
Closing bugs fixed in 1.7.52.
--
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=39280
Bug ID: 39280
Summary: German manpage claims WINELOADER defaults to
@bindir@/wineserver
Product: Wine
Version: 1.7.51
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: jre.winesim(a)gmail.com
Distribution: ---
Created attachment 52355
--> https://bugs.winehq.org/attachment.cgi?id=52355
Fix WINELOADER reference to wine instead of wineserver
Hi
The german manpage claims that WINELOADER defaults to @bindir@/wineserver
instead of @bindir@/wine.
Seems this is wrong since the manpage was added originally. The other manpages
have it correct.
Attached patches fixes that.
Greets
jre
--
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=36032
Bug ID: 36032
Summary: Colin McRea Rally 2005 - graphic glitches on second
run/carrier mode
Product: Wine
Version: 1.7.6
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: f.platte(a)platte-web.de
Created attachment 48184
--> http://bugs.winehq.org/attachment.cgi?id=48184
Screenshots to show the issue (jpg)
Colin McRea Rally 2005 nearly works perfectly with wine.
Still there is a wired issue: May be related to, but still distinguishes from
bug 14988 (http://bugs.winehq.org/show_bug.cgi?id=14988)
After launching it works "normally" (like it's supposed to do), and if you
enter a time trial race everything runs smooth and graphics is rendered nicely.
After the race is finished and you get back to the main menu/you directly enter
carrier mode after launch glitches appear and the frame-rate drops
significantly (like one, up to two thirds). The menus background animation now
draws big triangular figures and when entering a race/the car-park non-static
elements (shadows, moving banners/plants (in the wind) and similar object are
rendered in a white tint. Reflection does not work anymore, either.
This is related to ANY wine version colin mcrea works with.
Only exception so far is a custom compiled CrossOver 12.1.2 engine, while it's
broken again with CrossOver 12.5/13.X. I couldn't build 12.2.X.
--
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.