[PATCH 0/1] MR8630: dmcompos: Return E_NOTIMPL from the stub SignPost track Clone() method
Fixes a crash in Chicken Tournament with the DX7 dmstyle fixes from MR!8627 / bug 58493. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8630
From: Michael Stefaniuc <mstefani(a)winehq.org> Fixes a crash in Chicken Tournament. --- dlls/dmcompos/signposttrack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dmcompos/signposttrack.c b/dlls/dmcompos/signposttrack.c index eccf87a4893..5f1bde1c065 100644 --- a/dlls/dmcompos/signposttrack.c +++ b/dlls/dmcompos/signposttrack.c @@ -162,7 +162,7 @@ static HRESULT WINAPI signpost_track_Clone(IDirectMusicTrack8 *iface, MUSIC_TIME { IDirectMusicSignPostTrack *This = impl_from_IDirectMusicTrack8(iface); FIXME("(%p, %ld, %ld, %p): stub\n", This, mtStart, mtEnd, ppTrack); - return S_OK; + return E_NOTIMPL; } static HRESULT WINAPI signpost_track_PlayEx(IDirectMusicTrack8 *iface, void *pStateData, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8630
participants (2)
-
Michael Stefaniuc -
Michael Stefaniuc (@mstefani)