https://bugs.winehq.org/show_bug.cgi?id=36884
Bug ID: 36884
Summary: Drakensang: The Dark Eye demo crashes on startup
(needs d3dx9_36.dll.D3DXCreateTeapot implementation)
Product: Wine
Version: 1.7.22
Hardware: x86
URL: http://www.gamershell.com/download_36990.shtml
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Follow up to bug 35742. Now that D3DXCreateTorus is implemented, the game
crashes on start with a dialog box saying:
*** NEBULA ASSERTION ***\nprogrammer says: nD3D9Server::DeviceOpen():
D3DXCreateTeapot() failed!
and in the terminal (the only d3dx fixme):
fixme:d3dx:D3DXCreateTeapot (0x193100, 0x3242ec4, (nil)): stub
austin@aw25 ~ $ sha1sum Drakensang_DEMO_setup_ENGLISH.exe
2e47a2fbc7307e736394bf1d2b1a2f09c497c7a1 Drakensang_DEMO_setup_ENGLISH.exe
austin@aw25 ~ $ du -h Drakensang_DEMO_setup_ENGLISH.exe
501M Drakensang_DEMO_setup_ENGLISH.exe
austin@aw25 ~ $ wine --version
wine-1.7.22
--
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=37834
Bug ID: 37834
Summary: RtlSetCurrentDirectory_U prepends "UNC\" for network
paths; the resulting path is invalid
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: atakama0512(a)yahoo.com
Distribution: ---
Created attachment 50382
--> https://bugs.winehq.org/attachment.cgi?id=50382
cmd.exe output showing how UNC\ gets prepended when running cd \\server\share
Calling RtlSetCurrentDirectory_U with a network share argument like
"\\server\share" sets the current directory to "UNC\server\share". Subsequent
calls to GetCurrentDirectory will return the modified path.
The resulting path is invalid and unusable: attempting to read the directory or
writing a file to it results in ERROR_PATH_NOT_FOUND.
The bug can be reproduced using the internal command prompt, as seen in the
attachment.
>From what I've gathered from the source code, RtlSetCurrentDirectory_U calls
RtlDosPathNameToNtPathName_U, which prepends UncPfxW to the supplied path. The
last edits to dlls/ntdll/path.c were made in 2003-2004.
I stumbled across this behavior while investigating why Total Commander cannot
copy files to network shares. The sequence of calls in Total Commander is:
SetCurrentDirectory to the network path, then GetCurrentDirectory (which
returns the modified path in the form "UNC\server\share") and then it builds
the destination parameter by concatenating this path with the destination file
name. This gets passed to CopyFileEx, which fails with ERROR_PATH_NOT_FOUND
because of the "UNC\" prefix.
--
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=43036
Bug ID: 43036
Summary: SetNamedPipeHandleState returns ERROR_ACCESS_DENIED
when setting PIPE_NOWAIT
Product: Wine
Version: 2.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dan-wine(a)berrange.com
Distribution: ---
In GNULIB, there is code which tries to create an implementation of the POSIX
pipe() method for Windows, using the methods _pipe, _get_osfhandle and
SetNamedPipeHandleState. This code works when run on real windows systems (i've
tried Win2k8 myself), but fails when run under Wine (I've tested versions 2.5
and 2.7 in Fedora), with ERROR_ACCESS_DENIED from the SetNamedPipeHandleState
method
Since GNULIB code is fairly complex to follow I created this short demo
program:
$ cat > demo.c <<EOF
#include <sys/unistd.h>
#include <stdio.h>
#include <windows.h>
int nonblock(int fd) {
HANDLE h = (HANDLE)_get_osfhandle(fd);
char errbuf[1024];
DWORD state;
if (GetNamedPipeHandleState (h, &state, NULL, NULL, NULL, NULL, 0) == 0) {
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), errbuf, 1024, NULL);
fprintf(stderr, "Failed GetNamedPipeHandleState (%lu) %s", GetLastError(),
errbuf);
return -1;
}
if ((state & PIPE_NOWAIT) != 0) {
return 0;
}
state |= PIPE_NOWAIT;
if (SetNamedPipeHandleState (h, &state, NULL, NULL) == 0) {
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), errbuf, 1024, NULL);
fprintf(stderr, "Failed SetNamedPipeHandleState (%lu) %s", GetLastError(),
errbuf);
return -1;
}
return 0;
}
int main(int argc, char **argv) {
int fd[2];
if (_pipe(fd, 4096, 0) < 0) {
fprintf(stderr, "Failed to create pipe\n");
return -1;
}
if (nonblock(fd[0]) < 0){
fprintf(stderr, "Could not set non-blocking on fd[0]\n");
return -1;
}
if (nonblock(fd[1]) < 0){
fprintf(stderr, "Could not set non-blocking on fd[1]\n");
return -1;
}
fprintf(stderr, "Created non-blocking pipe pair\n");
}
EOF
$ i686-w64-mingw32-gcc -Wall -mconsole -o pipe.exe pipe.c
$ ./pipe.exe
fixme:winediag:start_process Wine Staging 2.7 is a testing version containing
experimental patches.
fixme:winediag:start_process Please mention your exact version when filing bug
reports on winehq.org.
fixme:sync:GetNamedPipeHandleStateW 0x2c 0x61f8f8 (nil) (nil) (nil) (nil) 0:
semi-stub
Failed SetNamedPipeHandleState (5) Access denied.
Could not set non-blocking on fd[0]
Strangely, this only seems to fail on fd[0] - if I let it run on fd[1] it will
work.
The original GNULIB code I hit the problem on is here:
http://git.savannah.gnu.org/cgit/gnulib.git/tree/lib/pipe2.chttp://git.savannah.gnu.org/cgit/gnulib.git/tree/lib/nonblocking.c
The Fedora Wine 2.7 package I tested on was built with these sources:
SHA512 (wine-2.7.tar.xz) =
1e61b9a4aa1f5f42fb27d11d5254a9ba90f348ad9c4d1ddd4b5da47cd7de638290a20accf7447db9c0e4ced4c2144497cdf5fc906a5eac60e923dabb61f65d3a
SHA512 (wine-2.7.tar.xz.sign) =
b03f4376b10bd8ea66e5e6fc0862a4f948e009862a374677c326744b31c9d9fdcf1efd3b789149fcb6fe617f9c75b1b47d61f884e06e8c0fe16633a99911b667
SHA512 (wine-staging-2.7.tar.gz) =
0abc89af701ae1b95c0eb08e72894c7bc40bdfe792e05b8af9282eab8407bb90b7dfcd4eb3a193a88759ce5d6ea6c2aa9696cac2d744f543c92529bb0d2636ee
--
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=42577
Bug ID: 42577
Summary: A regression with Far manager
Product: Wine
Version: 2.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ozerski(a)list.ru
Distribution: ---
A regression: Far manager (both 32-bit and 64-bit) running under wine (using
wineconsole) crashs due any attemt to change drive using menu or Alt+Fn
--
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=43072
Bug ID: 43072
Summary: Sonos Controller Program Error with Wine 2.O
Product: Wine
Version: 2.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: john.peters(a)gmx.fr
Distribution: ---
Created attachment 58255
--> https://bugs.winehq.org/attachment.cgi?id=58255
Created via Program Error window
Sonos controller worked with Wine 1.8 with Ubuntu 16.04. I had this bug problem
but solved it by going from 1.9 back to 1.8. My wine version has been updated
to 2.0 and I now have the old problem back. I can't remember how I downgraded
to 1.8. I get the program error window almost immediately on starting SONOS.
Can you tell me if the problem exists elsewhere and how I can go back to Wine
1.8? Thanks
--
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=38561
Bug ID: 38561
Summary: Painkiller crashes when loading a save
Product: Wine
Version: 1.7.41
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fremenzone(a)poczta.onet.pl
Distribution: ---
Created attachment 51440
--> https://bugs.winehq.org/attachment.cgi?id=51440
Crash log
Loading a saved game in Painkiller: Black Edition bought on GOG.com does not
work. Loading freezes at some point (always the same) and pressing a key
results in a crash. Wine version: wine-1.7.41-197-gf7e0927. Attaching 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=35371
Bug ID: 35371
Summary: Battlefield 2: Wine crashes on mic setup
Product: Wine
Version: 1.7.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: crazy.just(a)verizon.net
Classification: Unclassified
Created attachment 47174
--> http://bugs.winehq.org/attachment.cgi?id=47174
Program Error Details
Battlefield 2: Wine crashes on mic setup.
--
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=36763
Bug ID: 36763
Summary: Rogue Squadron 3D 1.3: Crashes with game resolutions
above 640x480
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dev(a)ovocean.com
Created attachment 48821
--> http://bugs.winehq.org/attachment.cgi?id=48821
Console output. Crash after line 19
If choosing a resolution above 640x480 in the game settings menu, the game
crashes at the start of missions, when the set resolution gets used.
System used:
Nvidia GeForce GTX 660M with Nvidia drivers v331.38
Xubuntu 14.04
--
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=36113
Bug ID: 36113
Summary: d3d9/device test has a leak
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: minor
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==17962== 34 bytes in 2 blocks are definitely lost in loss record 309 of 1,416
==17962== at 0x4006B11: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==17962== by 0x4E8E2B27: strdup (in /usr/lib/libc-2.18.so)
==17962== by 0x67C5806: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x67CE8F0: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x67D7587: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x6661EC8: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x63BDC15: shared_dispatch_stub_482 (in
/usr/lib/libglapi.so.0.0.0)
==17962== by 0x4F5BAD5: shader_glsl_compile (glsl_shader.c:330)
==17962== by 0x4F68B3F: shader_glsl_generate_vshader (glsl_shader.c:4588)
==17962== by 0x4F693E4: find_glsl_vshader (glsl_shader.c:4767)
==17962== by 0x4F6C88A: set_glsl_shader_program (glsl_shader.c:5793)
==17962== by 0x4F6E096: shader_glsl_select (glsl_shader.c:6149)
==17962== by 0x4F2EF12: context_apply_draw_state (context.c:2997)
==17962== by 0x4F581D6: draw_primitive (drawprim.c:664)
==17962== by 0x4F2F685: wined3d_cs_exec_draw (cs.c:291)
==17962== by 0x4F30A33: wined3d_cs_st_submit (cs.c:893)
==17962== by 0x4F2F6F2: wined3d_cs_emit_draw (cs.c:308)
==17962== by 0x4F3EFC3: wined3d_device_draw_primitive (device.c:3265)
==17962== by 0x4973D29: d3d9_device_DrawPrimitive (device.c:2101)
==17962== by 0x4C27D7C: test_null_stream (device.c:1952)
==17962==
--
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=11099
Summary: custom checkbox not displayed
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stuart(a)gathman.org
All the taxact versions use a custom checkbox that draws a large X for on
screen tax forms. These always display as blank. They are drawn correctly on
printout. The appdb entry is
http://appdb.winehq.org/objectManager.php?sClass=application&iId=1265
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9422
Summary: Regression from 0.9.36 to 0.9.42/43 when running visio
2003
Product: Wine
Version: 0.9.43.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jokester01au(a)yahoo.com.au
Created an attachment (id=7748)
--> (http://bugs.winehq.org/attachment.cgi?id=7748)
Log trace of failed run under 0.9.43
This may or may not be related to bug #5163.
On 0.9.36 I have a working installation of visio 2003.
After upgrading to 0.9.42 visio ceases to work, failing with the message "iopl
not enabled".
Ditto for 0.9.43.
After reverting back to 0.9.36, visio 2003 again works.
Word and Excel 2003 seem to work happily on all of these versions of wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35828
Bug ID: 35828
Summary: Unable to connect to EA Origin
Product: Wine
Version: 1.7.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
Created attachment 47837
--> http://bugs.winehq.org/attachment.cgi?id=47837
No Internet connection
Hi,
Since the latest version of EA Origin, it's impossible to connect to my Origin
account. When the connection's window appears, i have a message told me :
- In French : Connexion en ligne actuellement indisponible
- In English : Online connection actually unavaible.
You can see the screen for the message.
I installed EA Origin into a fresh wineprefix and it's the first time that i
have this message. If i launch +wininet debug channel, i have this trace in my
log :
trace:wininet:InternetGetConnectedState (0x32d598, 0x00000000)
warn:wininet:InternetGetConnectedState always returning LAN connection.
I tried with Wine 1.7.10 and i can confirm that it's not a regression. The
previous version of EA Origin worked with this old wine version.
Thanks,
Max
--
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=37850
Bug ID: 37850
Summary: fallout 2: problem with handling file permissions ?
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galtgendo(a)o2.pl
Distribution: ---
There seems to be an odd quirk in falout 2 when running it under wine.
It's documented on falloutmods.wikia.com/wiki/F2RP_Technical_Info.
I've tested it with unofficial 1.02.31 patch, which is F2RP stripped down to
bugfixes and graphic upgrade only (from the same author). It's actually
semi-official, as (AFAIK) GOG version uses an older version of that patch.
The exact steps were:
1. install fallout 2
2. get the *manual* version of the patch
3. read the instruction of the patch and strip them down as much as possible:
- copy the patch files and apply master.dat patch
- copy only the executable and ddraw.dll wrapper lib (from Win7 set), setup
native override for that wrapper, set 'Mode=4' in ddraw.ini
- get native d3dcompiler_43.dll (due to unimplemented fx_2_0 effect) and
d3dx9_36.dll (due to an error with a message, that doesn't say anything
meaningful)
Now, after that you should be able to start the game, but if you try to save
it, you'll run into the mentioned quirk. While most of the instructions on the
mentioned site seem a bit out of date, the one specific bit is still required,
even though it doesn't make much sense and is obviously irrelevant on Windows.
Now, as you try to save, the game will return "unable to save" dialog and no
*valid* savegame will be created, even though quite a few files in the save dir
will.
This problem is fixed by the snippet mentioned on that site:
chmod 444 [dD]ata/[pP]roto/[iI]tems/* [dD]ata/[pP]roto/[cC]ritters/*
Which actually stands for 'chmod a-w ...'
Afterwards, saving works as expected.
Now, as Windows obviously doesn't need anything alike, why does wine ?
Even if that's caused by some hacky solution in the original executable, this
would suggest something being subtly broken in some quite low level wine
function (at least that's what it seems to me).
--
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=39944
Bug ID: 39944
Summary: Stars! battle dialog lags
Product: Wine
Version: 1.9.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: curaga(a)operamail.com
Distribution: ---
Created attachment 53367
--> https://bugs.winehq.org/attachment.cgi?id=53367
Screenshot
The missiles in the Stars! battle dialog lag. This is a regression, Wine 1.3.0
displayed them smoothly.
I'll see about getting you a save file for quicker testing - otherwise you need
to play the game long enough to get to a point where you can battle with
missiles.
--
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=17708
Summary: Splinter cell double agent doesn't render correctly
Product: Wine
Version: 1.1.16
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Created an attachment (id=19904)
--> (http://bugs.winehq.org/attachment.cgi?id=19904)
Log from start till i had to kill the game (compressed because its 25mb)
Game renders only part of ui and character, rest is just darkness.
--
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=29700
Bug #: 29700
Summary: C&C TiberianSun and RedAlert 2 game graphics rendering
freezes when NOT moving the mouse.
Product: Wine
Version: 1.3.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pclaves(a)web.de
Classification: Unclassified
When starting a game in C&C Tiberian Sun or RedAlert 2 (same Game Engine) the
screen (or Window) is not refreshed unless the mouse is moved around. The Game
is progressing (albeit slow), if the mouse is moved the screen is refreshed and
the player units jump the the new positions.
Tested with Wine 1.3.37
This seems to be related to http://bugs.winehq.org/show_bug.cgi?id=14438 but
with the exact opposite effect.
I tried the tricks from this report and the AppDb entry but the have no effect.
The bug 14438 report metions that the DIB engine should have fixed that bug,
but it apparently created a regression worse than the problem.
--
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=18759
Summary: RoughDraft 3's Word Count feature always says zero
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.salsbury.f2s.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user reported in http://jainakay.livejournal.com/41083.html
that Rough Draft's word count feature fails, always reporting
that the document has zero words.
Sure enough, I tried Rough Draft 3, and he's right.
--
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=26768
Summary: oleaut32 warnings on x86-64
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
../../../dlls/oleaut32/tmarshal.c:426:3: warning: #warning You need to
implement stubless proxies for your architecture
../../../dlls/oleaut32/tmarshal.c: In function ‘serialize_param’:
../../../dlls/oleaut32/tmarshal.c:717:279: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c:793:73: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:794:56: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:800:50: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:802:7: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:802:41: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:807:51: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:809:7: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:809:41: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:895:92: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c: In function ‘deserialize_param’:
../../../dlls/oleaut32/tmarshal.c:1076:12: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1079:78: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c:1086:15: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1181:11: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1189:16: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c: In function ‘init_proxy_entry_point’:
../../../dlls/oleaut32/tmarshal.c:1699:17: warning: unused variable ‘xasm’
../../../dlls/oleaut32/tmarshal.c: At top level:
../../../dlls/oleaut32/tmarshal.c:1317:1: warning: ‘xCall’ defined but not used
--
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=39023
Bug ID: 39023
Summary: Final Fantasy XI Using a Bluetooth PS3 Controller
crashes the game.
Product: Wine
Version: 1.7.47
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wine(a)sharpner.de
Using a ps3 bluetooth controller and setting it up with the ffxiutils.
Configuration works, but the game crashes with gamepad enabled.
fixme:qtdatahandler:myComponentRoutineProc unhandled select 0x44
wine.bin(820,0x401f4000) malloc: *** error for object 0x4021c830: double free
*** set a breakpoint in malloc_error_break to debug
wine: Assertion failed at address 0x000b:0x988b669a (thread 0025), starting
debugger...
1.7.48 is also affected, here it wasn't enough to disable gamepad in the
configuration but I also had to disable bluetooth.
--
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=30522
Bug #: 30522
Summary: Jupiter shows too small, unreadable fonts
Product: Wine
Version: 1.5.2
Platform: x86
URL: http://pity.elfin.pl/pliki/Jupiter/Jupiter2011/std/1.0
.5.6/Jupiter2011_std_1.0.5.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: washuu(a)eastnews.com.pl
Classification: Unclassified
Created attachment 39929
--> http://bugs.winehq.org/attachment.cgi?id=39929
sample data file with bogus numbers
Jupiter is free, downloadable program for calculating taxes in Poland, it's
quite pupular.
I found using it under Wine quite unconfortable, because of a few bugs. Here is
one of them:
- install the application. In my case it went without any glitches.
- run the application.
- open the sample data file, using menu "Plik" ("file") and "Otworz" ("open").
- wait a few seconds to open data file, when it is loaded you see some text in
the middle, starting with "dziekujemy za skorzystanie z programu".
- click tab "Formularze" ("forms") and see very tiny, unreadable letters on
the form. On win32, the forms are readable and nicely formatted. I can create
some screenshots, but nevertheless the fonts in Wine are very small.
My wine is 1.5.2, running on Ubuntu 11.10 32bit.
--
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=37959
Bug ID: 37959
Summary: Guild Wars 2 freezes on startup
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emailofchris(a)gmail.com
Distribution: ---
Created attachment 50572
--> https://bugs.winehq.org/attachment.cgi?id=50572
Terminal output when running Guild Wars 2.
The launcher starts, but when I login and click Play, the music from the game
begins to play but nothing is visible. Also I can't alt-tab out as GW2 keeps
the focus, so I have to switch to a new tty in order to terminate it. With a
virtual desktop, as recommended on the AppDB, it still won't start, but it does
become easier to terminate it without a tty switch.
Using Arch Linux with KDE Plasma 5.
--
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=14078
Summary: Rewrite typelib marshaller on top of NDR functions
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Copied from wine-devel.]
Dan K. wrote in
http://www.winehq.org/pipermail/wine-devel/2008-June/066540.html
--- snip ---
While looking at the valgrind warning in
http://kegel.com/wine/valgrind/logs-2008-06-20/vg-oleaut32_tmarshal.txt
Conditional jump or move depends on uninitialised value(s)
at serialize_param (tmarshal.c:736)
by serialize_param (tmarshal.c:744)
by xCall (tmarshal.c:1414)
by ???
by func_tmarshal (tmarshal.c:1179)
by run_test (test.h:449)
by main (test.h:498)
Uninitialised value was created by a stack allocation
at test_typelibmarshal (tmarshal.c:762)
The problem happens during a call to this method
where widget is a pointer to an uninitialized pointer
which will receive the pointer to the widget:
interface IKindaEnumWidget : IUnknown
{
HRESULT Next(
[out] IWidget **widget);
I discovered that the attached patch prevented the problem.
I don't quite understand why; at first glance,
widget is an out parameter from the function,
why would it be dereferenced while serializing
the call?
--- snip ---
Rob Shearman wrote:
http://www.winehq.org/pipermail/wine-devel/2008-June/066571.html
--- snip ---
It's a bug in the typelib marshaller. It doesn't check whether a
VT_PTR type is actually an interface pointer and not access it on
input when the parameter is an [out] parameter. Note that because of
the memory re-use semantics it is legal to access memory passed in to
a remote function, even when the parameter is [out].
I think it's getting close to the time to reimplement the typelib
marshaller on top of NDR functions so that we don't have to implement
these subtleties twice, would improve performance and would reduce the
amount of code.
--- snip ---
--
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=42058
Bug ID: 42058
Summary: rFactor2 requires unimplemented function
?get@?$time_get@DV?$istreambuf_iterator@DU?$char_trait
s@D@std@@@std@@@std@@QBE?AV?$istreambuf_iterator@DU?$c
har_traits@D@std@@@2@V32@0AAVios_base@2@AAHPAUtm@@PBD4
@Z called in 32-bit code (0x7b43fa6e).
Product: Wine
Version: 1.9.23
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: madbad82(a)gmail.com
Distribution: ---
Created attachment 56545
--> https://bugs.winehq.org/attachment.cgi?id=56545
backtrace of rFactor2
rFactor2 launcher start but immediately crash due to unimplemented function in
msvcp110.dll
--
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=39253
Bug ID: 39253
Summary: From Dust crashes when loading the menu
Product: Wine
Version: 1.7.42
Hardware: x86
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Regression SHA1: 7109bebd024ee68ec2b3ef0a6b29e72ded08abc0
Distribution: ---
Created attachment 52315
--> https://bugs.winehq.org/attachment.cgi?id=52315
terminal output
Prerequisites to start the game: native d3dx9 (d3dx9_43.dll) and xaudio2.
The game shows the Ubisoft logo then comes a loading screen and the game
crashes before the main menu appears. There is no demo version available.
Regression introduced by
commit 7109bebd024ee68ec2b3ef0a6b29e72ded08abc0
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Sun Apr 26 16:09:10 2015 +0200
wined3d: Move volume DXTn handling to apply_format_fixups.
Reproduced with nvidia binary driver 340.93 and nouveau/mesa from git.
wine-1.7.51-48-ge28d6b2
Fedora 22 32-bit
Nvidia Geforce 250 / OpenGL renderer string: Gallium 0.4 on NV92
--
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=34967
Bug #: 34967
Summary: Microsoft .NET 2.0 (sp1) Framework (x64): hangs after
install
Product: Wine
Version: 1.7.6
Platform: x86-64
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=6041
OS/Version: Linux
Status: NEW
Keywords: dotnet, download, Installer, win64
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 46595
--> http://bugs.winehq.org/attachment.cgi?id=46595
backtrace
Similar to bug 30162, but this time it's dotnet20sp1 (64-bit)
To reproduce:
rm -rf .wine
WINEARCH=win64 wineboot
wine64 uninstaller # remove mono
wget
http://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de5…
wine64 NetFx64.exe
install .Net 2.0 (I saw it hang here in previous runs, but not lately. Not sure
if it's a race, or I did something wrong).
then sp1:
wget
http://download.microsoft.com/download/9/8/6/98610406-c2b7-45a4-bdc3-9db1b1…
wine64 NetFx20SP1_x64.exe
it should install fine, but will hang on completion:
[austin@localhost winetricks]$ ps u | grep \\.exe
austin 10465 0.1 0.9 2657616 9496 pts/2 Sl+ 19:20 0:00
Y:\dotnet20sp1\NetFx20SP1_x64.exe
austin 10474 1.5 3.7 2680516 38232 pts/2 S+ 19:20 0:05
c:\d9fc34cf222bec46bf31\setup.exe
austin 11599 0.0 0.0 112640 952 pts/1 S+ 19:26 0:00 grep
--color=auto \.exe
Eventually, you'll get a debugger notice, mentioning mscorsvw. The terminal
output is brief:
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
err:ole:CoRevokeClassObject called from wrong apartment, should be called from
16f00000170
# hangs here
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"continue"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"continue"
fixme:advapi:InitiateSystemShutdownExW (null) L"" 0 0 1 -2147483648
I'll attach the backtrace I got (though it looks like it's a 32-bit process?).
--
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=19016
Summary: Unhandled type TKIND_COCLASS in oleaut
serialze_param() and deserialize_param()
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshudson(a)gmail.com
fixme:ole:serialize_param unhandled switch cases tattr->typekind 5
This causes Word Automation from .NET to not work.
Tell me how to get what logs you want and I'll be happy to provide them.
--
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=35663
Bug ID: 35663
Summary: SWAT 3: Screen Flickering
Product: Wine
Version: 1.7.12
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ipickert55(a)gmail.com
SWAT 3 has intense screen flickering ingame, menus work just fine it is only
ingame. I have no registry settings that have been set, the only thing is a
-nointro flag to make sure the game doesnt crash at startup.
--
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=30801
Bug #: 30801
Summary: need for speed underground 2 [full version] unusable
because of incorrect graphics render
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kaktus9(a)gmail.com
Classification: Unclassified
Created attachment 40339
--> http://bugs.winehq.org/attachment.cgi?id=40339
screen shown after pressing enter after intro movie and my system specs by
hardinfo program in a zip
after installing need for speed underground 2 into wine [game installs ok] on
startup either invalid parameters passed wine error window appears, or after
multiple tries game starts, but after intro movie splash screen shown is
lacking any form of text/fonts. after pressing enter to get into main menu of
need for speed underground 2 either black screen is shown, or after another
enter press game goes to state shown by screenshot attached below, only1 car
image no ui whatsoever that makes game unusable
tested both under wine default for ubuntu 12.04 -1.4 and wine 1.5.5 in both
versions bug occurs
i'm using a HP 6735b laptop with raden 3200 HD on board, when tested on exact
same machine with windows 7 game runs perfectly on max settings so it is not
cause of too weak hardware
this was tested under FULL version v.1.0
demo may be found here http://www.gamefront.com/files/3673931
i use drivers as follows stated bny hardinfo program
-Version-
Kernel : Linux 3.2.0-24-generic-pae (i686)
Distribution : Ubuntu 12.04 LTS
my computer full specification can be found at
http://h10010.www1.hp.com/wwpc/us/en/sm/WF06b/321957-321957-64295-321838-39…
below i attach in zip archive screenshot and hardinfo program html report on my
system
--
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=40803
Bug ID: 40803
Summary: Hard Reset Redux fails to launch ("DirectX 10 device
not found!")
Product: Wine
Version: 1.9.12
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 54734
--> https://bugs.winehq.org/attachment.cgi?id=54734
Terminal output in Wine 1.9.12 Windows 7 32-bit prefix
When trying to run the 32-bit version of Hard Reset Redux in a Windows 7 mode
prefix I get greeted with the error message "DirectX 10 device not found!"
This message occurs when I try to run the game via its 32-bit executable
(hr.Win32.exe) and the game's launcher (launcher.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=35675
Bug ID: 35675
Summary: Bad textures in World of Tanks
Product: Wine
Version: 1.7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mzettik(a)gmail.com
Created attachment 47636
--> http://bugs.winehq.org/attachment.cgi?id=47636
Screenshots of bad textures on tanks
I'm running World of Tanks with latest wine 1.7.13.
WoT after update to 8.11 sometimes bad show textures on tanks (in garage and in
game too). In 8.10 no problems. I wrote to WoT bugs, but they not officialy
support linux and I cannot send info from dxdiag - not works.
I test completly reinstall WoT (via Play on Linux) and still bad textures
Screenshots in attachements...
--
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=38394
Bug ID: 38394
Summary: Eador: Genesis crashes on exit (only in fullscreen
mode)
Product: Wine
Version: 1.7.32
Hardware: x86
URL: http://files.games.1c.ru/eador/demo/eador_demo_setup.e
xe
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Regression SHA1: f6dde7062413a1dfdd71acc92c5178ac66f3ade0
Distribution: ---
Created attachment 51247
--> https://bugs.winehq.org/attachment.cgi?id=51247
terminal output
Eador: Genesis crashes on exit when I'm running the game in Wine's traditional
fullscreen mode and the game is set up to run in fullscreen. No crash occurs in
virtual desktop mode. The crash happens quite frequently (9 out of 10 times)
but sometimes the game exits properly.
Regression introduced by
f6dde7062413a1dfdd71acc92c5178ac66f3ade0 is the first bad commit
commit f6dde7062413a1dfdd71acc92c5178ac66f3ade0
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Nov 18 21:26:57 2014 +0100
wined3d: Restore the display mode on focus change.
I tried the patch from bug #38064, but it didn't help.
Steps to reproduce the problem in the Russian demo:
1. installation should be straightforward despite of the Cyrillic text in the
installer.
2. before running the game edit the file 'Eador.cfg' and change the option
'Windowed' to '0'
3. start the game with Eador.exe, press <Esc> to skip the intro. In the menu
click the bottom-most button (выход), then click the button in the lower right
corner. The game crashes on exit.
eador_demo_setup.exe
sha1: 36bc92d257839c1232ecf55e873fcb44c04eb319
wine-1.7.40-99-gdc22283
Fedora 21 x86 / XOrg 1.16.3 / XFCE 4.10 / Nvidia binary drivers 340.76
--
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=42447
Bug ID: 42447
Summary: Oblivion crashes on exit
Product: Wine
Version: 2.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emailofchris(a)gmail.com
Distribution: ---
Created attachment 57285
--> https://bugs.winehq.org/attachment.cgi?id=57285
The backtrace of the crash.
The game works pretty great for me now, except for when the game crashes every
time I exit. I had to make the game windowed and use a virtual desktop in order
to get the attached backtrace.
--
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=25066
Summary: NFS Porsche: gimme.dll prevents the game from starting
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=31786)
--> (http://bugs.winehq.org/attachment.cgi?id=31786)
Terminal output on wine-1.3.6-240-g791b22a
Steps to reproduce:
1) remove ~/.wine
2) install NFS Porsche Unleashed
3) patch the game with NFS5-3.5.20040310.ZIP
4) wine Porsche.exe driver=dx7z
Behaviour:
The game crashes after splash screen.
Expected behaviour:
The game shouldn't crash.
Workaround:
rename gimme.dll to gimme.dll.bak
--
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=38124
Bug ID: 38124
Summary: Can't enable visual style in a DLL.
Product: Wine
Version: 1.7.37
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jactry92(a)gmail.com
Distribution: ---
Created attachment 50815
--> https://bugs.winehq.org/attachment.cgi?id=50815
testcase
Hi all,
I tired to enable visual style[1] for dialog in shell32.dll and comdlg32.dll.
Normally, a dialog will be themed by visual style when comctl32.dll v6 and
InitCommonControls() was used.
I implemented a dialog in a dll, and used 'Activation Contexts'[2] to let the
dll depend on comctl32.dll and call InitCommonControls(), but when the dialog
was called by another program, the dialog didn't be themed.
testcase.tar.gz is testcase I wrote for reproducing this bug.
You can reproduce the bug follow:
1. Install and enable a visual style theme in winecfg;
2. Download the testcase, unarchive it and make;
3. $ wine main.exe, click the 'OK' button. You can see button in the main
windows was themed but two buttons in the dialog was not themed. (as picture
testcase_wine.png showing)
Expected result:
The dialog also is themed, as picture testcase_windows.png showing.
[1]
https://msdn.microsoft.com/en-us/library/windows/desktop/bb773187(v=vs.85).…
[2] https://msdn.microsoft.com/en-us/library/aa374153(v=vs.85).aspx
--
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=30511
Bug #: 30511
Summary: Guild Wars 2 launcher crashes with "assertion
m_ioCount failed"
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmlipman(a)gmail.com
Classification: Unclassified
Created attachment 39906
--> http://bugs.winehq.org/attachment.cgi?id=39906
launcher crash log
After downloading around 1GB of data, the Guild Wars 2 launcher crashes with
"assertion: m_ioCount". I can restart the launcher and it picks up from where
it left off, so eventually it does finish. A crash log from the game is
attached.
I've also seen this crash very infrequently on the login screen. The beta
hasn't started yet so I don't know if the crash occurs ingame as well.
--
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=35862
Bug ID: 35862
Summary: d3d{8,9}/visual tests fail on mesa 10.0.4
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
d3d8:
visual.c:2728: Test failed: Expected color 0x0000ff00 at 400,60, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,60, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 400,180, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,180, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 80,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 240,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 400,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 80,420, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 240,420, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 400,420, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,420, got
0x000000ff.
d3d9:
visual.c:12337: Test failed: Expected color 0x0000ff00 at 400,60, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,60, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 400,180, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,180, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 80,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 240,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 400,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 80,420, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 240,420, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 400,420, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,420, got
0x000000ff.
wine-1.7.15-32-gebd5f96
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.0.4
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor
Graphics Controller (rev 09) (prog-if 00 [VGA controller])
--
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=26692
Summary: Cities In Motion Demo: Frame Rate is 10-20% of to
windows performance when anitaliasing set to max (6x)
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fjuni5(a)msn.com
Demo version can be downloaded via
http://www.pcgamestore.com/games/cities-in-motion-nbsp/trial/cim-demo-1-0-8…
or installed automatically using cim_demo verb in winetricks since r451.
Framerate is roughly 10-20% of the window's counterpart when running at 6x
antialiasing. Other rendering options such as anisotropy and shadow quality do
not affect performance noticeably. Workaround is setting AA to 2x.
System:
Dual boot Ubuntu 10.10 and Win 7
CD2 2.66 w/ 4 GB Ram
Nvidia 9600 GSO running 260.19.06
--
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=34212
Bug #: 34212
Summary: Child Windows stucks when running my windows app with
wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmrbranco(a)gmail.com
Classification: Unclassified
When programming language basic liberty and create applications with child
window
and run with linux / wine, child windows opens but does not have focus,
the same windows are locked unable to do anything.
In Attached leave the output when I run my app on terminal, leave source
and a compilation in the language I'm using.
Rui
--
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=13092
Summary: Word Viewer in wine displayes hebrew reversed
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ran.rutenberg(a)gmail.com
Hi,
I'm using wine 0.9.59 on Ubuntu 8.04. After installing Word Viewer (2003), and
opening a document written in Hebrew, the order of the letters in each word is
reversed, but the order of the words is right.
For example if there are two words that should appear like this (Hebrew is
written from right to left):
"FED CBA"
then on the Word Viewer in wine they appear like this:
"DEF ABC"
AFAIK this problem also occurs on other linux distros (I've seen it also on
Gentoo).
--
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=29705
Bug #: 29705
Summary: RichView doesn't print italics
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: sundoulos2(a)gmail.com
Classification: Unclassified
Created attachment 38548
--> http://bugs.winehq.org/attachment.cgi?id=38548
unicode text file with italics
ActionTest (which uses RichView class) works fine using ANSI files/text. Not so
with Unicode. If I copy Unicode text and paste it into ActionTest:
Text that is Italic shows properly in the text editor and print preview
but prints out as normal rather than italics. All other text prints as shown in
the preview.
ActionTest can be downloaded from:
http://trichview.com/resources/actions/actiontest.zip
--
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=22244
Summary: PlantsVsZoombies fail
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d.okias(a)gmail.com
Created an attachment (id=27163)
--> (http://bugs.winehq.org/attachment.cgi?id=27163)
log_from_nouveau
Tested on R300 and Nouveau, both fail same. Both Gentoo.
--
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=41551
Bug ID: 41551
Summary: Homeworld Remastered: OpenGL failed to load
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: adonai(a)xaker.ru
Distribution: ---
Created attachment 55883
--> https://bugs.winehq.org/attachment.cgi?id=55883
access violation with gl version 3.3
Homeworld Remastered hangs right after start with this line in logs:
err:wgl:X11DRV_wglCreateContextAttribsARB Context creation failed (error 1)
When exporting MESA_GL_VERSION_OVERRIDE=3.3 game starts but I see Access
Violation error a bit after (attaching dump for that).
Details: Archlinux
OpenGL renderer string: Gallium 0.4 on AMD POLARIS10 (DRM 3.2.0 / 4.7.6-1-ARCH,
LLVM 3.8.1)
OpenGL core profile version string: 4.1 (Core Profile) Mesa 12.0.3
OpenGL core profile shading language version string: 4.10
Resolution: 2560x1440, dpi 109, color depth 24
Desktop environment: KDE
cmd exec line: wine HomeworldRM.exe -dlccampaign HW2Campaign.big -campaign
Ascension -moviepath DataHW2Campaign -mod compatibility.big
--
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=40202
Bug ID: 40202
Summary: Witcher 1: crashes shortly after pressing "launch
game" button when using optirun (Nvidia Optimus).
Product: Wine
Version: 1.9.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: drozja_5_5(a)mail.ru
Distribution: ---
Created attachment 53712
--> https://bugs.winehq.org/attachment.cgi?id=53712
crash logs
Game runs fine when started regular way (using integraded GPU), but crashes
when I try to use dedicated GPU with optirun.
"err:wgl:has_opengl glAccum not found in libGL, disabling OpenGL", then crash.
wine 1.9.4
winetricks d3dx9_36
winecfg: defaults
WINEARCH=win32
WINEPREFIX=~/.wine32
Linux 4.4.1-2-ARCH x86_64 (Archlinux)
Other games work fine with optirun.
Some additional minor logs are in post:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=26114#Comment…
--
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=37765
Bug ID: 37765
Summary: Starcraft II - Alt+Tab Switching windows makes the
program crash
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ema.oriani(a)gmail.com
Distribution: ---
Upon playing StarCraft II, if one Alt+Tab current wine window, no new frames
are being drawn and music/sounds disappear from SC2 window, then if one goes
back into SC2 window, nothing happens but cursor can be moved.
This happens when virtual desktop is emulated or not, with any combination of
"Wine configuration" --> "Graphics".
My rig is:
i7 core, 32 GB RAM, nVidia GTX 680 (drivers 343.36), Ubuntu 14.04
X.Org X Server 1.15.1
Release Date: 2014-04-13
X Protocol Version 11, Revision 0
Build Operating System: Linux 3.2.0-70-generic x86_64 Ubuntu
Current Operating System: Linux scv 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13
15:45:27 UTC 2014 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic
root=UUID=eb9641e6-e704-442d-8586-746b8363c391 ro quiet splash
Build Date: 10 December 2014 06:15:52PM
xorg-server 2:1.15.1-0ubuntu2.6 (For technical support please see
http://www.ubuntu.com/support)
Current version of pixman: 0.30.2
--
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=42406
Bug ID: 42406
Summary: Wine compilation hangs starting from 1.9.22 version
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vityokster(a)gmail.com
Distribution: ---
Wine compilation hangs on compiling dll/ntdll/server.c starting from 1.9.22
version.
Using git bisect I found bad commit:
3b30002aecf7cd55970979f7e02a53866fe66f1f is the first bad commit
commit 3b30002aecf7cd55970979f7e02a53866fe66f1f
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Mon Oct 24 17:48:49 2016 +0200
ntdll: Cache error information for cacheable handles with no fd.
Signed-off-by: Jacek Caban <jacek(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
I compile wine using this command:
CC="ccache gcc" CFLAGS="-O2 -march=i686" ./configure --verbose --disable-tests
&& make -j1
At git commit 27759315367428c6bd4bed5cf410407bd2d18fb9 compilation hangs at the
same file.
--
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=30675
Bug #: 30675
Summary: Rapture3D Speaker layout crashes when drawing /
painting controls
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linards.liepins(a)gmail.com
Classification: Unclassified
Created attachment 40163
--> http://bugs.winehq.org/attachment.cgi?id=40163
First log.
After installing Rapture3D Spkear Layout configuration tool together with Dirt2
Demo, I check out if it is possible to upen it... unfortinetly not. Attaching
bug report / stack trace ...
--
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=33622
Bug #: 33622
Summary: Counter-Strike Source Sound,Weapons Crashes
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: likeaninja03(a)yahoo.com
Classification: Unclassified
Created attachment 44502
--> http://bugs.winehq.org/attachment.cgi?id=44502
Information after its crashes
my weapons are sometimes invisible and some of the models are invisible
when i switch my weapons really fast it crashes(tat never happend to me before
the upadte)and i think the sound crashes the game not sure about it (most
certain)
--
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=40126
Bug ID: 40126
Summary: Populous 3: Screen refreshes only when mouse pointer
moves
Product: Wine
Version: 1.9.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: diegoandino(a)gmail.com
Distribution: ---
Created attachment 53610
--> https://bugs.winehq.org/attachment.cgi?id=53610
Output from wine popTB.exe (wine-git)
Upon launching the game, and after the intro video, the screen stops refreshing
as soon as I move the mouse pointer, and after that, will only do so when I
move the pointer.
This happens with both D3DPotTB.exe and popTB.exe.
I've tested wine 1.9.2, wine 1.9.3, wine-staging 1.9.3 and wine-git.
Running on ARCH x86_64, all wine versions built with gcc 5.3.0, configured and
compiled with options and flags set in wine-git PKGBUILD from AUR, with one
exception: added -fno-omit-frame-pointer due to a bug in gcc that prevents
1.9.3 from being built.
It is probably worth noting that there is a way to get the screen to refresh
with no apparent problems, and it is using wine-staging WITH CSMT enabled (only
D3DPopTB.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.
https://bugs.winehq.org/show_bug.cgi?id=37317
Bug ID: 37317
Summary: Tomb Raider 2013 (on Steam) crashes after launch
Product: Wine
Version: 1.7.27
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vpc.bopingouin(a)gmail.com
Created attachment 49629
--> https://bugs.winehq.org/attachment.cgi?id=49629
Error log
Tomb Raider 2013 crashes quickly after launch (can't reach game menu), and
generates erros about OLE objects and LLVM librairies (cf. attachment).
In particular, some errors seem to be critical:
- '[0926/151316:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid
WinSAT assessment.'
- '[0926/151324:ERROR:renderer_main.cc(227)] Running without renderer sandbox'
- 'LLVM ERROR: ran out of registers during register allocation'
Additional information:
- Linux kernel 3.16.2
- mesa 10.3.0
- libLLVM 3.4.2
Hardware:
- AMD APU A8-7600 with Radeon R7 Graphics
- 8 GB of DDR3
Driver:
- Free radeon driver. A portion of the result of 'glxinfo' is as follows:
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
OpenGL vendor string: X.Org
OpenGL renderer string: Gallium 0.4 on AMD KAVERI
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.3.0-rc1
OpenGL core profile shading language version string: 3.30
--
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=35119
Bug ID: 35119
Summary: 1.7.8: all games crash since yesterday
Product: Wine
Version: 1.7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dentaku(a)web.de
Classification: Unclassified
Just 3 days ago I upgraded to wine 1.7.8 to fix the steam startup crash. After
installing wine 1.7.8 steam worked again and the games also worked. Today, I
bootet my computer again and Ubuntu updates and steam updates went in. After
that no game works anymore!
There are lots of erros in the terminal - just a few when trying to start
several games (Tomb Raider, Zeno Clash 2, ..):
fixme:setupapi:extract_cabinet_file awful hack: extracting cabinet
"C:\\users\\martin\\Temp\\DX9055.tmp\\APR2007_xinput_x86.cab"
fixme:exec:SHELL_execute flags ignored: 0x00000100
Es konnte keine Anwendung gestartet werden, oder es ist keine Anwendung mit der
angegebenen Datei verknüpft.
ShellExecuteEx fehlgeschlagen: Ungültiger Parameter.
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\Steam_Wine\\SteamApps\\common\\Zeno Clash 2\\Binaries\\Win32\\ZC2.exe"
failed, status c0000135
err:setupapi:do_file_copyW Unsupported style(s) 0x144
fixme:exec:SHELL_execute flags ignored: 0x00000100
Es konnte keine Anwendung gestartet werden, oder es ist keine Anwendung mit der
angegebenen Datei verknüpft.
ShellExecuteEx fehlgeschlagen: Ungültiger Parameter.
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:heap:HeapSetInformation 0x240000 0 0x23fce0 4
DIFxAPI Sampe Program
fixme:difxapi:DIFXAPISetLogCallbackA (0x401000, (nil)) stub
fixme:difxapi:DriverPackageInstallA ("C:\\Program Files (x86)\\AGEIA
Technologies\\driver\\x64\\1.1.1.15\\PhysX64.inf", 20, (nil), 0x23e8e0) stub
fixme:difxapi:DIFXAPISetLogCallbackA ((nil), (nil)) stub
Install script executed.fixme:advapi:EventRegister
{47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x4285f80, 0x42d3c50, 0x42d3c48
--
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.