http://bugs.winehq.org/show_bug.cgi?id=17446
Summary: Slideshow with MP3 breaks PowerPoint
Product: Wine
Version: unspecified
Platform: PC
URL: http://media.codeweavers.com/pub/crossover/office/suppor
t/PPView97.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Created an attachment (id=19524)
--> (http://bugs.winehq.org/attachment.cgi?id=19524)
Slideshow to reproduce the crash
The attached slideshow causes PowerPoint viewer 97 (and PowerPoint 2000) to
crash in winemp3.acm:III_dequantize_sample().
I have attached the backtrace.
--
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=19772
Summary: EverQuest 2 crashes in third-person when riding the
Ykeshan bear mount.
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ben(a)walkingriver.com
When I try to ride my best mount, the Ykeshan bear, EverQuest 2 will crash.
However, if I use one of my older mounts, the game works fine. The magic carpet
mount also works fine. It is only the Ykeshan bear.
--
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=17463
Summary: Attempting to compile crosstest without mingw should
issue error
Product: Wine
Version: 1.1.15
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: enhancement
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Not a big deal, just noticed that when I tried to compile the cross tests, it
failed. Forgetting I had recently reinstalled, I checked and I don't have
mingw.
make[1]: Entering directory `/home/austin/wine-git/dlls'
make[2]: Entering directory `/home/austin/wine-git/dlls/d3dx9_36'
false -k -l libd3dx9.a -d d3dx9_36.def
make[2]: *** [libd3dx9.a] Error 1
make[2]: Leaving directory `/home/austin/wine-git/dlls/d3dx9_36'
make[1]: *** [d3dx9_36/libd3dx9.a] Error 2
make[1]: Leaving directory `/home/austin/wine-git/dlls'
make: *** [dlls/__crosstest__] Error 2
The error message doesn't make it very obvious though...we should be able to
detect that pretty easily and print a better error message.
--
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=12530
Summary: Psychonauts does not run due to unimplemented function
d3dx9_36.dll.D3DXFilterTexture
Product: Wine
Version: 0.9.58.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sean(a)mess.org
When running Psychonauts (with 1.0.4 patch), it always fails with the following
error:
fixme:d3d9:IDirect3DDevice9Impl_CreateQuery (0x136ab0) call to
IWineD3DDevice_CreateQuery failed
wine: Call from 0x7b844360 to unimplemented function
d3dx9_36.dll.D3DXFilterTexture, aborting
This is actually a bug in wine-0.9.59 but this cannot be selected in bugzilla.
--
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=19562
Summary: Guitar Hero World Tour crashes after dinput
GetProperty
Product: Wine
Version: 1.1.26
Platform: PC
URL: http://worldtour.guitarhero.com/uk/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andras(a)csevego.net
After I set a fake paging file in regedit, game will crash after this line:
warn:dinput:IDirectInputDevice2AImpl_GetProperty Unknown property <guid-0x0018>
The problem is, we return DI_OK instead of an error code.
It can be fixed with this:
diff --git a/dlls/dinput/device.c b/dlls/dinput/device.c
index 941206c..cb66b03 100644
--- a/dlls/dinput/device.c
+++ b/dlls/dinput/device.c
@@ -888,6 +896,7 @@ HRESULT WINAPI IDirectInputDevice2AImpl_GetProperty(
}
default:
WARN("Unknown property %s\n", debugstr_guid(rguid));
+ return DIERR_INVALIDPARAM;
break;
}
--
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=18858
Summary: D3DADAPTER_IDENTIFIER9.Description retrieved from
IDirect3D9::GetAdapterIdentifier is empty for Mesa DRI
Intel(R) 852GM/855GM card/driver
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yann(a)droneaud.fr
After calling IDirect3D9::GetAdapterIdentifier(), the 'Description' field for
this configuration is empty while VendorId and DeviceId are correctly set for a
82852/855GM Integrated Graphics Device. See:
Driver:'Display' Description:'' DeviceName:'\\.\DISPLAY1' DriverVersion:'0006
000e 0007 0000' VendorId:'8086' DeviceId:'3582' SubSysId:'00000000'
Revision:'0000' DeviceIdentifier:'{AEB2CDD4-6E41-43EA-941C-8361CC760781}'
WHQLLevel:'1'
--
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=17447
Summary: Another slideshow with MP3 breaks PowerPoint
Product: Wine
Version: unspecified
Platform: PC
URL: http://media.codeweavers.com/pub/crossover/office/suppor
t/PPView97.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
As in bug 17446, this slideshow causes PowerPoint viewer 97 (and PowerPoint
2000) to crash. However this time there is no backtrace and it does not look
like the problem happens in the same place, which is why I'm reporting it
separately. But the following traces show that this is related to the mp3
decoding.
fixme:mpeg3:III_dequantize_sample mpg123: Can't rewind stream by 13 bits!
trace:mpeg3:mp3_horse before 0 put 750 during 528 after 240
trace:mpeg3:MPEG3_DriverProc (00000001 0x161b68 604f 006d047c 0016b038);
fixme:mpeg3:decode_header Layer 1 not supported!
fixme:mpeg3:decode_header Layer 1 not supported!
fixme:mpeg3:decode_header Layer 1 not supported!
fixme:mpeg3:III_get_side_info_2 big_values(303) too large!
The traces end there.
I am not attaching the slideshow because it's quite big (2.8MB). But it can be
downloaded from:
http://fgouget.free.fr/tmp/winehq_chutes.pps
--
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=19443
Summary: Wine itself segfaults when running Geneforge
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wanderer(a)fastmail.fm
Past versions of Wine (1.0.1 and earlier, and I think some later but I haven't
confirmed that) were able to run the demo of Spiderweb Software's "Geneforge"
with only cosmetic problems. I have now purchased the full version (which
should be binary identical to the demo except for being registered), and
updated Wine to the current latest git version. The install went fine, but now
when I try to run the actual game, Wine itself dies with a segmentation fault
no later (and sometimes earlier) than the moment of loading the actual game
world.
I've been trying to get useful debugging information, but nothing I've done so
far has been at all fruitful. The instructions on using the Wine debugger don't
help in this case, as it doesn't seem to be the Windows program which is
crashing, but rather the wine executable itself; my normal course in this type
of situation is to fall back on gdb, but 'gdb wine Geneforge.exe' produces
esoteric errors and (when those seem to be dealt with) complains that
Geneforge.exe is not an ELF binary, which naturally it isn't.
What can I do to get useful debugging information to figure out why Wine is
crashing?
--
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=18545
Summary: Condor: graphic errors
Product: Wine
Version: 1.1.21
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tsierkkis(a)gmail.com
In flight more in cockpit view graphical errors are seen. PDA screen is
invisible after few seconds of flight and looking into right side of cockpit
shows a vertical shape. These have not been observed with previously tested
wine versions. Broken PDA makes the game in practice unplayable in any serious
manner.
--
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.