http://bugs.winehq.org/show_bug.cgi?id=29792
Bug #: 29792
Summary: Gothic 2 (JoWood Productions) installer fails due to
media validation tool failing (don't add
FILE_ATTRIBUTE_ARCHIVE by default to file entries)
Product: Wine
Version: 1.4-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
I first wanted to investigate bug 22515 hence i bought the game for a few bucks
and looked into it...
Well, it seems there exist different editions of the game and the problems
might not be connected at all.
Although this is related to copy protection it's not the SecuROM 4.x tests
failing here - that part of protection works fine.
I have the 3 CD set by JoWood Productions released on November 29, 2002.
Near the end of installation process there is a tool "g2setup.exe" launched
which verifies the authenticity of install media.
That process returns a specific exit code (0x777 -> 1911) which basically says:
"all checks passed".
Any different exit code will roll back the whole installation!
Current workaround: kill the installer from another terminal when this
verification process starts.
Everything has already been copied up to this point so just wait until the disc
spins up and execute 'wineserver -k'.
--- snip ---
0024:Starting process L"C:\\Program Files\\Jowood\\Gothic II\\g2setup.exe"
(entryproc=0x4c6929)
--- snip ---
--- snip ---
-=[ ProtectionID v0.6.4.0 JULY]=-
(c) 2003-2010 CDKiLLER & TippeX
Build 07/08/10-17:57:05
...
Scanning -> Z:\home\focht\.wine\drive_c\Program Files\Jowood\Gothic
II\g2setup.dll
File Type : 32-Bit Dll (Subsystem : Win GUI / 2), Size : 229376 (038000h)
Byte(s)
[File Heuristics] -> Flag : 00000000000000001100001100000001 (0x0000C301)
[!] Armadillo v2.xx - v3.xx detected !
[i] Splash Setting (0x0) -> NONE / Duration : 00 second(s)
[CompilerDetect] -> Visual C/C++
- Scan Took : 0.560 Second(s)
--- snip ---
Various anti-debugging/hacking trickery which of course can be bypassed ;-)
Additionally to physical media analysis of GOTHIC2_CD3 (part of SecuROM) there
are "custom" checks present.
Most of them are simple ones like comparing disc serial against hard coded
value.
The directory structure is read from disc and CRC32 checksums are calculated
for specific files.
--- snip ---
ATTRIBS SIZE CRC32 NAME
____________________________________________________________
A R 362,789,836 5f4cb098 Gothic2-Setup.W03
A R 123 JoWooD Homepage.url
A R 14,816 Readme.txt
A R 289 Register.url
A R 5,569 eula.txt
A R 766 gothic2.ico
(DIR) 168,146,318 ArxDemo
A R 31,744 1d31e5c6 ArxDemo\Setup.exe
A R 877 ArxDemo\Setup.ini
A R 1,304,064 ArxDemo\Setup.msi
A R 101,581,207 ArxDemo\Setup1.cab
A R 23,103,162 ArxDemo\Setup2.cab
A R 31,150,491 ArxDemo\Setup3.cab
A R 1,309,184 ArxDemo\Setup_Deutsch.msi
A R 1,708,856 34ec21c0 ArxDemo\instmsi.exe
A R 1,822,520 e5563f20 ArxDemo\instmsiw.exe
...
Scan time.............[ 551.80] Seconds (551801 ms)
Total files...........[ 35] Files
Total size............[ 558,468,227] Bytes
Dirlist Text CRC32....[ 0032ED44]
____________________________________________________________
...
--- snip ---
Forget the scan time, I was debugging at this place ;-)
What makes things complicated is that additionally to per-file CRC32 checksums
there is also a CRC32 for the whole in-memory folder listing content generated
(see snippet) -> "Dirlist Text CRC32" (in snippet the address is printed, not
the value itself).
That overall checksum didn't match the internal hard-coded one.
One problem is that Wine adds FILE_ATTRIBUTE_ARCHIVE by default to each file
info entry.
Source:
http://source.winehq.org/git/wine.git/blob/c7cb3e6cb21598281cf2b00b2ccd8323…
This is breaks the overall checksum (file entries get "A" added).
The file entries have to have only FILE_ATTRIBUTE_READONLY set -> "R" (reside
on CDROM).
If FILE_ATTRIBUTE_ARCHIVE is omitted (and a second bug is worked around) the
verification process exits with exit code 0x777 which allows the main installer
to successfully finish.
---
There is another problem, a bug in the verification tool that unfortunately
prevents a "full" fix for this installer.
One of the file CRC32 on CD3 gets miscalculated ...
It took me some hours to find out this brain damage after successfully pinning
down the first problem and wondering why the overall checksum still didn't
match.
--- snip ---
...
0024:Call KERNEL32.CreateFileA(0032d734
"D:\\arxdemo\\setup.exe",80000000,00000001,00000000,00000003,00000080,00000000)
ret=00d86dfe
0024:Ret KERNEL32.CreateFileA() retval=000000a0 ret=00d86dfe
0024:Call KERNEL32.GetFileSize(000000a0,00000000) ret=00d87385
0024:Ret KERNEL32.GetFileSize() retval=00007c00 ret=00d87385
0024:Call ntdll.RtlAllocateHeap(00fc0000,00000000,00010010) ret=00be379b
0024:Ret ntdll.RtlAllocateHeap() retval=00fc5238 ret=00be379b
0024:Call KERNEL32.ReadFile(000000a0,00fc5238,00010000,00bfd464,00000000)
ret=00d8725a
0024:Ret KERNEL32.ReadFile() retval=00000001 ret=00d8725a
0024:Call ntdll.RtlFreeHeap(00fc0000,00000000,00fc5238) ret=00be3cea
0024:Ret ntdll.RtlFreeHeap() retval=00000001 ret=00be3cea
0024:Call KERNEL32.CloseHandle(000000a0) ret=00d8743a
0024:Ret KERNEL32.CloseHandle() retval=00000001 ret=00d8743a
--- snip ---
"D:\\arxdemo\\setup.exe" is the culprit. The file size is 31744 bytes.
The tool allocates a fixed 65552 byte buffer to read file content in and
calculate checksum on (actually 65536 bytes are used for checksumming).
Prior to calculating file CRC32 for "D:\\arxdemo\\setup.exe", the 350 MiB
"D:\\gothic2-setup.w03" was checksummed in 0x10000 byte chunks.
It had the same heap chunk address 0x00fc5238 which was later reused for
"D:\\arxdemo\\setup.exe" checksum calculation.
--- snip ---
0024:Call KERNEL32.CreateFileA(0032dd20
"D:\\gothic2-setup.w03",80000000,00000001,00000000,00000003,00000080,00000000)
ret=00d86dfe
0024:Ret KERNEL32.CreateFileA() retval=0000009c ret=00d86dfe
0024:Call KERNEL32.GetFileSize(0000009c,00000000) ret=00d87385
0024:Ret KERNEL32.GetFileSize() retval=159fbbcc ret=00d87385
0024:Call ntdll.RtlAllocateHeap(00fc0000,00000000,00010010) ret=00be379b
0024:Ret ntdll.RtlAllocateHeap() retval=00fc5238 ret=00be379b
0024:Call KERNEL32.ReadFile(0000009c,00fc5238,00010000,00bfd464,00000000)
ret=00d8725a
0024:Ret KERNEL32.ReadFile() retval=00000001 ret=00d8725a
...
0024:Call KERNEL32.ReadFile(0000009c,00fc5238,00010000,00bfd464,00000000)
ret=00d8725a
0024:Ret KERNEL32.ReadFile() retval=00000001 ret=00d8725a
0024:Call KERNEL32.ReadFile(0000009c,00fc5238,00008480,00bfd464,00000000)
ret=00d8725a
0024:Ret KERNEL32.ReadFile() retval=00000001 ret=00d8725a
0024:Call KERNEL32.ReadFile(0000009c,00fc5238,00008480,00bfd464,00000000)
ret=00d8725a
0024:Ret KERNEL32.ReadFile() retval=00000001 ret=00d8725a
0024:Call ntdll.RtlFreeHeap(00fc0000,00000000,00fc5238) ret=00be3cea
0024:Ret ntdll.RtlFreeHeap() retval=00000001 ret=00be3cea
...
--- snip ---
Because the heap chunk was reused and the buffer was fully filled from previous
run, the read file operation for "D:\\arxdemo\\setup.exe" only initialized the
first 31744 bytes.
The checksum is done on 65536 bytes of buffer which includes garbage/leftover
already present.
Well, the developers didn't bother to pass HEAP_ZERO_MEMORY to
RtlAllocateHeap() or explicit memset(ptr, 0, nbytes).
The tool "works" in Windows most likely due to different heap manager
implementation/usage or maybe application shims.
They put some effort into anti-debugging/hacking/copying and rambled about
piracy in hidden messages (found while debugging) ... and yet managed to put in
such bugs.
You can hack/patch ntdll.dll RtlAllocateHeap() -> forcing flags |=
HEAP_ZERO_MEMORY to verify the installer really works after fixing the first
problem.
Regards
--
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=30421
Bug #: 30421
Summary: obscure GDI Message Queue + Focus bug
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
Classification: Unclassified
ok, this is a rather obscure bug that i've been experiencing for quite some
time, but hadn't got a handle on any of the functions being used, so couldn't
really provide a useful report. as i am now running pyjamas-desktop which uses
python ctypes bindings to gdi32 (!!) i can now provide useful feedback.
please see the following file, the GetMessage loop towards the end:
http://pyjs.org/pygit/#file=pyjd/mshtml.py&id=0d4b6787d01c3d90f2c8801c5c4c4…
basically, the repro is as follows:
* run wine python.exe Hello.py (an example)
* move the mouse out of the GDI32 (IWebBrowser2 OLE control) window
* move the mouse into the xterm where wine was fired up
* press ctrl-c
now, _normally_, under xp, nothing happens... and nothing _should_ happen...
ever. ctrl-c should be *completely* ignored. but, continue:
* move the mouse _back_ into the GDI32 window
* the program exits
the exit should *not* be happening when the mouse is moved back.
which brings me on to the various experiences that i've had with focus issues,
especially dialog boxes. maybe this is because i'm using fvwm2, but the
behaviour of focus on dialog boxes and especially inputboxes within dialog
boxes is _very_ erratic. the mouse is needed to be moved into the parent
window in order sometimes for keyboard focus to arrive on the inputbox within
the dialog box! sometimes that doesn't work, and the mouse is required to be
moved onto the bar at the top of the parent window (the one with the title -
the x-windows / fvwm window bar!)
all very odd, and probably a different bug, but hey :)
--
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=19182
Summary: Allow to completely disable MIME-type and application
integration
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diafero(a)arcor.de
Note: I could not find a component "winemenubilder" which is why I selected
"-unknown".
It would be great to have a way to tell wine not to create a whole bunch of
files across the .config and .local directories. I don't want any mime-type
which is registered by a windows application run through wine to reflect on my
system - if I really want to use wine to open a certain filetype (which never
happened so far) I will do that manually. Nor do I want all the unnecessary
start menu entries to be added to my KDE menu - they end up in the wrong
category anyway. I like to have the control of creating these entries myself.
For the menu it worked fine to simply remove the "Wine" menu directory with the
menu editor. The annoying files still got created, but they were ignored.
However now wine started to spam my mime directory, too, and it constantly
re-creates the files in there - a really annoying behaviour. This not only
leads to the danger of me accidentally starting wine without wanting to do so,
it also drives some applications crazy (for example the KDE screenshot
application no longer recognizes ".jpg" to be a JPEG extension since wine added
.jfif).
I understand that many people want wine to just magically integrate into their
Linux environment, but there are also people like me who switched to Linux
because they like to have control, and Windows often prefers its own
preferences over the user's. Wine should really not bring that to Linux, or it
will get as annoying as Windows is. If I could not patch wine myself to no
longer create these files, I had no way to stop all these mime types from being
added, no configuration panel to remove them, nothing. I do not even know which
of my many WINEPREFIXes created the files.
--
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=34830
Bug #: 34830
Summary: rpcrt4:cstub fails and crashes on Windows 8
Product: Wine
Version: 1.7.5
Platform: x86
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: rpc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
The rpcrt4:cstub conformance test has a number of test failures and crashes on
Windows 8:
cstub.c:519: Test failed: QueryInterfacevtbl 1 not updated 776C2F4B 76085EBB
cstub.c:520: Test failed: AddRefvtbl 1 not updated 776BF425 76085ECE
cstub.c:524: Test failed: Invokevtbl 1 not updated 776BF839 7607CC41
cstub.c:525: Test failed: IsIIDSupportedvtbl 1 not updated 776CF314 76102697
cstub.c:527: Test failed: DebugServerQueryInterfacevtbl 1 not updated 776CF2ED
76102671
cstub.c:528: Test failed: DebugServerReleasevtbl 1 not updated 776C767F
76102684
cstub.c:530: Test failed: QueryInterfacevtbl 2 not updated 776C2F4B 76085EBB
cstub.c:531: Test failed: AddRefvtbl 2 not updated 776BF425 76085ECE
cstub.c:533: Test failed: Connectvtbl 2 not updated 776CF28C 7610264B
cstub.c:534: Test failed: Disconnectvtbl 2 not updated 776BF0D3 7607CC1B
cstub.c:535: Test failed: Invokevtbl 2 not updated 776BF839 7607CC41
cstub.c:536: Test failed: IsIIDSupportedvtbl 2 not updated 776CF314 76102697
cstub.c:537: Test failed: CountRefsvtbl 2 not updated 776CF2D2 7610265E
cstub.c:538: Test failed: DebugServerQueryInterfacevtbl 2 not updated 776CF2ED
76102671
cstub.c:539: Test failed: DebugServerReleasevtbl 2 not updated 776C767F
76102684
cstub.c:541: Test failed: QueryInterfacevtbl 3 not updated 776C2F4B 76085EBB
cstub.c:542: Test failed: AddRefvtbl 3 not updated 776BF425 76085ECE
cstub.c:546: Test failed: Invokevtbl 3 not updated 776BF839 7607CC41
cstub.c:547: Test failed: IsIIDSupportedvtbl 3 not updated 776CF314 76102697
cstub.c:549: Test failed: DebugServerQueryInterfacevtbl 3 not updated 776CF2ED
76102671
cstub.c:550: Test failed: DebugServerReleasevtbl 3 not updated 776C767F
76102684
cstub.c:564: Test failed: wrong proxy 1 func 0 776BF1AA/76080EFB
cstub.c:565: Test failed: wrong proxy 1 func 1 776BF4CB/7607CC2E
cstub.c:566: Test failed: wrong proxy 1 func 2 776BF16A/7607CBF5
cstub.c:584: Test failed: wrong proxy 3 func 0 776BF1AA/76080EFB
cstub.c:585: Test failed: wrong proxy 3 func 1 776BF4CB/7607CC2E
cstub.c:586: Test failed: wrong proxy 3 func 2 776BF16A/7607CBF5
cstub.c:755: this is the last test seen before the exception
cstub: unhandled exception c0000005 at 775CB76F
The crash happens in this call of create_proxy_test():
create_proxy_test( ppsf, &IID_if2, if2_proxy_vtbl.Vtbl );
--
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=43387
Bug ID: 43387
Summary: valgrind shows several definite leaks in
dlls/windowscodecs/tests/metadata.c
Product: Wine
Version: 2.12
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Gentoo
==2263== 16 bytes in 1 blocks are definitely lost in loss record 116 of 603
==2263== at 0x7BC51061: notify_alloc (heap.c:254)
==2263== by 0x7BC5554F: RtlAllocateHeap (heap.c:1716)
==2263== by 0x4BBB1B1: MetadataQueryReader_CreateInstance
(metadataquery.c:624)
==2263== by 0x4BBAE68: mqr_GetMetadataByName (metadataquery.c:540)
==2263== by 0x4A3A786: IWICMetadataQueryReader_GetMetadataByName
(wincodec.h:1605)
==2263== by 0x4A3A786: test_metadata_gif (???:0)
==2263== by 0x4A40077: func_metadata (metadata.c:3077)
==2263== by 0x4A51AF9: run_test (test.h:603)
==2263== by 0x4A51F58: main (test.h:687)
==2263==
==2263== 64 bytes in 4 blocks are definitely lost in loss record 300 of 603
==2263== at 0x7BC51061: notify_alloc (heap.c:254)
==2263== by 0x7BC5554F: RtlAllocateHeap (heap.c:1716)
==2263== by 0x4BBB1B1: MetadataQueryReader_CreateInstance
(metadataquery.c:624)
==2263== by 0x4BBAE68: mqr_GetMetadataByName (metadataquery.c:540)
==2263== by 0x4A3F47F: IWICMetadataQueryReader_GetMetadataByName
(wincodec.h:1605)
==2263== by 0x4A3F47F: test_queryreader (???:0)
==2263== by 0x4A4003B: func_metadata (metadata.c:3065)
==2263== by 0x4A51AF9: run_test (test.h:603)
==2263== by 0x4A51F58: main (test.h:687)
==2263==
==2263== 212 bytes in 1 blocks are definitely lost in loss record 446 of 603
==2263== at 0x7BC51061: notify_alloc (heap.c:254)
==2263== by 0x7BC5554F: RtlAllocateHeap (heap.c:1716)
==2263== by 0x7B44A252: HeapAlloc (heap.c:271)
==2263== by 0x7B44A53F: GlobalAlloc (heap.c:389)
==2263== by 0x4A3040D: create_stream (metadata.c:208)
==2263== by 0x4A3768B: test_metadata_gif (metadata.c:1340)
==2263== by 0x4A40077: func_metadata (metadata.c:3077)
==2263== by 0x4A51AF9: run_test (test.h:603)
==2263== by 0x4A51F58: main (test.h:687)
==2263==
--
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=22383
Summary: Dragon Age: Origins - massive flickering when
StrictDrawOrdering is disabled
Product: Wine
Version: 1.1.43
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: hverbeet(a)gmail.com
Using wine-1.1.42-390-g4fc6512 + the patch from bug 22202, there is massive
flickering of vertical black lines across the intro video. Disabling
StrictDrawOrdering fixes it.
Can't seem to get a screenshot, but if you really need one, let me know.
--
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=42681
Bug ID: 42681
Summary: Regression: Graphics/Texture no longer render
correctly in Reflex Arena
Product: Wine
Version: 2.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: firestarw(a)gmail.com
Distribution: ---
Game is Reflex Arena (https://www.reflexarena.com/) a DX10 game that that
requires steam to run
When in game in a map, in wine versions 2.0 and 2.1, the game renders ok (not
fully normal compared to windows but playable)
Screenshot (map is aerowalk):
https://cdn.discordapp.com/attachments/266419049372581889/29354471255035084…
>From wine version 2.2 onwards, the graphics render as black
Screenshot from wine 2.4 (map is aerowalk):
https://cdn.discordapp.com/attachments/266419049372581889/29354470385988403…
--
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=41752
Bug ID: 41752
Summary: Need For Speed Most Wanted 2012 Corrupted Models &
Textures in Game
Product: Wine
Version: 1.9.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: Adix.me(a)gmail.com
Distribution: ---
Created attachment 56193
--> https://bugs.winehq.org/attachment.cgi?id=56193
Need For Speed Most Wanted 2012 Debug Log File
Need For Speed Most Wanted 2012 - In Game has corrupted Textures & Models,
complains about VSSetShader Dynamic linking is not implemented yet, PSSetShader
Dynamic linking is not implemented yet and OMSetBlendState Per-rendertarget
blend not implemented and WINED3D_RTYPE_TEXTURE_1D not implemented.
--
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=33834
Bug #: 33834
Summary: user32: multiline edit control renders tabs not
correctly using usp10
Product: Wine
Version: 1.6-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bernhardu(a)vr-web.de
Classification: Unclassified
Created attachment 44856
--> http://bugs.winehq.org/attachment.cgi?id=44856
minimal test program
An multiline edit control from user32 with custom tab widths set by window
message EM_SETTABSTOPS gets the tabs not rendered correctly.
Only the first and the last "column" is visible.
--
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=38245
Bug ID: 38245
Summary: Constrcuct2 can't create a localhost server - httpapi
stubs
Product: Wine
Version: 1.7.36
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blurymind(a)gmail.com
Distribution: ---
Created attachment 51055
--> https://bugs.winehq.org/attachment.cgi?id=51055
terminal log file
Constrcut2 works almost flawlessly now. You can edit the games and export the
games. They work.
But you can not playtest the games, because wine fails to create a localhost
server and launch the web browser with it.
Here the part when I try to run the localhost server in the terminal Log:
fixme:httpapi:HttpAddUrl ((nil), L"http://127.0.0.1:5099/", (nil)): stub!
fixme:httpapi:HttpAddUrl ((nil), L"http://127.0.0.1:5100/", (nil)): stub!
fixme:httpapi:HttpCreateHttpHandle (0x14819d8, 0): stub!
fixme:httpapi:HttpAddUrl ((nil), L"http://localhost:5000/", (nil)): stub!
fixme:httpapi:HttpAddUrl ((nil), L"http://localhost:5001/", (nil)): stub!
And this is just from one of my tests. I tried with local host server addresses
..
Exporting them takes minutes and that is just not an option when developing a
game - you need to run it in your browser immediately. Plus you can't debug the
game when exporting, then running - no debugger.
--
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=40868
Bug ID: 40868
Summary: World of Warcraft ; seh:RtlCaptureStackBackTrace stub
Product: Wine
Version: 1.9.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blue-t(a)web.de
Distribution: ---
Created attachment 54930
--> https://bugs.winehq.org/attachment.cgi?id=54930
Log with that exception
World of Warcraft 7 , aka the current Legion expansion beta realm version,
is quite agressive with seh:RtlCaptureStackBackTrace missing.
That occurs with both d3d9 and d3d11 rendering engines enabled.
fixme:seh:RtlCaptureStackBackTrace (0, 60, 0x23f8e0, 0x23f7c0) stub!
Not sure where that comes from as the live version seems to be a lot more
quiet.
--
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=13610
Summary: DragonRiders: main character, dragon and sky appear
black
Product: Wine
Version: 1.0-rc3
Platform: Other
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=8946
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rainmaker(a)icgag.it
Created an attachment (id=13574)
--> (http://bugs.winehq.org/attachment.cgi?id=13574)
How it looks in Wine
The main character and the dragon in the DragonRiders game appear completely
black except for their eyes, as if they had no texture applied (check the
attached screenshots). From a bird's view of the village at the beginning, it
looks like the sky suffers from the same problem. I couldn't verify whether
this applies to other characters in the game as well or not, since I only
played for a few minutes.
The same bug happens in Cedega as well.
I can only guess it's some kind of chroma key problem (as the one in Ultima
IX), but the game cannot be configured with respect to that. The only hint is a
debug error that floods the console (check attached log):
err:d3d_surface:IWineD3DBaseSurfaceImpl_BltFast DXTC decompression not
supported by now
but I don't know if it might be related. There's also a message concerning an
unsupported Stippled Alpha feature.
--
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=26617
Summary: Need for Speed Shift 2: large black squares appear in
cockpit, obscuring much of the screen
Product: Wine
Version: 1.3.16
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
It's as if part of the screen is censored.
The black blocks usually show up after about twenty or forty seconds of
racing. They're there even on lowest settings. Makes game unplayable.
There are quite a few messages like this:
fixme:d3d_surface:surface_load_location Downloading RGB surface 0x79f9eb50 to
reload it as sRGB.
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_Blt Filter WINED3DTEXF_LINEAR not
supported in software blit.
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_Blt Stretched blit not implemented
for bpp 64!
--
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=41260
Bug ID: 41260
Summary: Z-Fighting on character models during cutscenes in
SW:TOR
Product: Wine
Version: 1.9.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: darkwingbuck13(a)gmail.com
Distribution: ---
Created attachment 55560
--> https://bugs.winehq.org/attachment.cgi?id=55560
An example of the problem
When entering a cutscene in SWTOR, the animated models for characters will have
black flickering spots appear and disappear in a frame during cutscenes. I
cannot find anything in a debug log that would give a reason for this to
happen. All settings are on Ultra. It is incredibly hard to screenshot and show
the problem, but I've attached what I could get.
--
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=23081
Summary: Dragon Age: Origins - shadow under character flickers
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The shadow under the character flickers badly, especially in the
character selector before the game launches.
(This is with winetricks strictdrawordering=enabled as per bug 22383 )
It is present at least as far back as wine-1.1.36, but it gets
harder to tell as you go further back, because of other problems.
--
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=23730
Summary: Dragon Age: Origins, black flickering in opening menu
screen when mouse moves
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Now that bug 22200 is fixed, Dragon Age Online no longer needs native
msvcr80. But when you move the mouse, there are black
bars in the game's opening menu page.
You can work around this with WINEDEBUG=-msvcrt.
The messages this suppresses look like this:
fixme:msvcrt:_controlfp_s (0x518e8f8 655391 196608) semi-stub
fixme:msvcrt:__crtGetStringTypeW (unk 0, type 1, wstr 0x518e58c(1), 0x518e590)
partial stub
This seems to be a concrete case of a verbose FIXME causing suboptimal
performance. Should we
a) declare this to be not a problem because the user is supposed to read the
manual or appdb and know to use WINEDEBUG=-all when running this app?
b) declare this to be not a problem because the distro is supposed to patch
or wrap wine to always run apps with WINEDEBUG=-all?
c) temporarily mark the FIXMEs that cause the performance problem to be
displayed once only?
or d) something else?
--
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=41436
Bug ID: 41436
Summary: row_server_p.c build warnings when compiling 64-bit
Wine
Product: Wine
Version: 1.9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
Distribution: ---
Created attachment 55808
--> https://bugs.winehq.org/attachment.cgi?id=55808
row_server_p.c build warning for 64-bit Wine
Hi,
I am building the latest git version of Wine 1.9.20 (as of 03.10.2016) and it's
being built with WoW64 support. While the 64-bit version is compiling I noticed
a few build warnings (see attachment)
My version of GCC is 6.2.1 20160830.
--
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=29397
Bug #: 29397
Summary: Flickering black boxes over models in Orcs Must Die!
Product: Wine
Version: 1.3.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeff(a)deserettechnology.com
Classification: Unclassified
Created attachment 38054
--> http://bugs.winehq.org/attachment.cgi?id=38054
Black boxes covering player models
While playing Orcs Must Die!, flickering black boxes appear on the edges of
many models, including background models that are part of the arena as well as
character models. These black boxes rarely stay in place long enough to capture
with a screenshot, but I have one that shows two such boxes. They change
position as the player moves and animations execute, but the boxes are present
in almost every frame.
Tested with 1.1.35 and 962230064d and got identical results. I have never tried
to play with earlier versions so I don't know if this is a regression or not.
The attached screenshot shows a black box over the archer's head and the
player's elbow. The box on the archer is permanent, the box on the players
elbow flickers as movement animations occur.
--
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=28883
Bug #: 28883
Summary: The Witcher 2: Portions of objects rendered as black.
Product: Wine
Version: 1.3.31
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mblackwell1024(a)gmail.com
Classification: Unclassified
The Witcher 2 suffers from strange anomalies where objects or parts of objects
are drawn as black rather than textured. This occurs regardless of whether GLSL
is enabled or disabled and is not the same as Bug 27194 (which is resolved).
The only console message during this time is:
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
over and over.
I've attached a screenshot showing the issue. Shifting the view slightly
changes what will and won't be shown as black. It happens mostly outdoors and
generally on foliage, although it sometimes appears on characters as well as
the screenshot indicates.
--
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=14939
Summary: DXT1 support not implemented
Product: Wine
Version: 1.1.2
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shacklein(a)gmail.com
Running Black & White, regardless of in-game settings, the following fixme
occurs:
fixme:d3d_surface:surface_convert_format Cannot find a conversion function from
format WINED3DFMT_DXT1 to WINED3DFMT_A4R4G4B4
Although the game is still playable, the lack of DXT1 support does seriously
affect the graphics and gameplay. On "lowest" settings, the terrain is
transparent and some objects are untextured and 100% black; on "highest", some
textures are corrupted, or untextured as in "lowest" settings.
--
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=41674
Bug ID: 41674
Summary: Dungeon rats - black squares in some textures
Product: Wine
Version: 1.9.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: amagarrsh(a)gmail.com
Distribution: ---
Created attachment 56065
--> https://bugs.winehq.org/attachment.cgi?id=56065
complete log
Dungeon rats need d3dcompiler_43 override or the game crashes.
With d3dcompiler_43.dll native game works perfect but there are black squares
in some textures.
There are quite a few messages in the log:
fixme:d3d:wined3d_texture_generate_mipmaps texture 0xbee87e0 stub!
err:d3d:wined3d_debug_callback 0x2e2b040: "GL_INVALID_OPERATION error
generated. Cannot begin query on an active query object.".
err:d3d:wined3d_debug_callback 0x2e2b040: "GL_INVALID_OPERATION error
generated. <target> does not have an active query.".
err:d3d:wined3d_debug_callback 0x2e2b040: "GL_INVALID_OPERATION error
generated. Query object not found.".
--
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=37819
Bug ID: 37819
Summary: The Forest: To dark environment and missing textures
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
Created attachment 50368
--> https://bugs.winehq.org/attachment.cgi?id=50368
Terminal output
On playing The Forest I'm seeing 2 issues that seems to be related:
- On running around the environment gets often very dark. It is a fading effect
and is maybe a feature of the game but on looking at Let's Plays on Windows
this doesn't appear in such a heavy way.
- Some graphics have missing textures and they will be shown as a white graphic
then. Also I'm noticing that looking at such a graphic does also trigger the
first issue.
In the attachments is the terminal output and 2 screenshots that compare how
the game looks normally at night and how the environemnt turns black after
turning a little to the left (so that I'm looking at a standing fire which have
partly missing textures).
--
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=21197
Summary: Black dots are seen on some 3D models in GTAIV
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Created an attachment (id=25456)
--> (http://bugs.winehq.org/attachment.cgi?id=25456)
Exploded car
Sometimes dots make up the whole model, easily seen on exploded cars.
--
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=25760
Summary: After deinstallation of World of Tanks, its .desktop
file still resides in the menu
Product: Wine
Version: 1.3.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
After deinstallation of World of Tanks, its .desktop file still resides in the
menu. The item disappears from Wine submenu but appears in "Applications".
--
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=37871
Bug ID: 37871
Summary: GOG.com downloader (.NET 3.5 app) wants
wininet.GetUrlCacheConfigInfoA/W implementation
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
It's rather harmless as the failure is catched and handled in managed code.
So the issue is rather about an improvement and the app can be used as test
case.
--- snip ---
fixme:wininet:GetUrlCacheConfigInfoW (0x1440e8, 0x33df24, 104)
Message: Value does not fall within the expected range.
Stack trace: at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32
errorCode, IntPtr errorInfo)
at MS.Win32.WinInet.get_InternetCacheFolder()
at System.Windows.Media.Imaging.BitmapDownload.BeginDownload(BitmapDecoder
decoder, Uri uri, RequestCachePolicy uriCachePolicy, Stream stream)
at System.Windows.Media.Imaging.LateBoundBitmapDecoder..ctor(Uri baseUri,
Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption
cacheOption, RequestCachePolicy requestCachePolicy)
at System.Windows.Media.Imaging.BitmapDecoder.CreateFromUriOrStream(Uri
baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions,
BitmapCacheOption cacheOption, RequestCachePolicy uriCachePolicy, Boolean
insertInDecoderCache)
at System.Windows.Media.Imaging.BitmapImage.FinalizeCreation()
at System.Windows.Media.Imaging.BitmapImage.EndInit()
at GOGCompanionApp.AppWindow.LoginUser()
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/cc817578%28v=vs.85%…
Source:
http://source.winehq.org/git/wine.git/blob/2aaff6e19f9ef97a241d7ca36497d47d…
--- snip ---
3764 BOOL WINAPI GetUrlCacheConfigInfoW(LPINTERNET_CACHE_CONFIG_INFOW
CacheInfo, LPDWORD size, DWORD bitmask)
3765 {
3766 FIXME("(%p, %p, %x)\n", CacheInfo, size, bitmask);
3767 INTERNET_SetLastError(ERROR_INVALID_PARAMETER);
3768 return FALSE;
3769 }
--- snip ---
$ wine --version
wine-1.7.33-191-ge899bd8
Regards
--
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.