dmstyle: Avoid cloning the IStream in parse_style_form().

It can be an application provided IStream with unimplemented Clone()
method.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=31562
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-12-20 23:55:36 +01:00 committed by Alexandre Julliard
parent 6dd84c53b5
commit 2ba39c8901

View File

@ -778,23 +778,21 @@ static HRESULT parse_style_form(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHUNK
ListCount[0] = 0; ListCount[0] = 0;
switch (Chunk.fccID) { switch (Chunk.fccID) {
case DMUS_FOURCC_BAND_FORM: { case DMUS_FOURCC_BAND_FORM: {
LPSTREAM pClonedStream = NULL; ULARGE_INTEGER save;
struct style_band *pNewBand; struct style_band *pNewBand;
TRACE_(dmfile)(": BAND RIFF\n"); TRACE_(dmfile)(": BAND RIFF\n");
IStream_Clone (pStm, &pClonedStream); /* Can be application provided IStream without Clone method */
liMove.QuadPart = 0; liMove.QuadPart = 0;
liMove.QuadPart -= sizeof(FOURCC) + (sizeof(FOURCC)+sizeof(DWORD)); liMove.QuadPart -= sizeof(FOURCC) + (sizeof(FOURCC)+sizeof(DWORD));
IStream_Seek (pClonedStream, liMove, STREAM_SEEK_CUR, NULL); IStream_Seek(pStm, liMove, STREAM_SEEK_CUR, &save);
hr = load_band(pClonedStream, &pBand); hr = load_band(pStm, &pBand);
if (FAILED(hr)) { if (FAILED(hr)) {
ERR(": could not load track\n"); ERR(": could not load track\n");
return hr; return hr;
} }
IStream_Release (pClonedStream);
pNewBand = heap_alloc_zero(sizeof(*pNewBand)); pNewBand = heap_alloc_zero(sizeof(*pNewBand));
if (NULL == pNewBand) { if (NULL == pNewBand) {
@ -808,8 +806,8 @@ static HRESULT parse_style_form(IDirectMusicStyle8Impl *This, DMUS_PRIVATE_CHUNK
IDirectMusicTrack_Release(pBand); pBand = NULL; /* now we can release it as it's inserted */ IDirectMusicTrack_Release(pBand); pBand = NULL; /* now we can release it as it's inserted */
/** now safely move the cursor */ /** now safely move the cursor */
liMove.QuadPart = ListSize[0]; liMove.QuadPart = save.QuadPart - liMove.QuadPart + ListSize[0];
IStream_Seek (pStm, liMove, STREAM_SEEK_CUR, NULL); IStream_Seek(pStm, liMove, STREAM_SEEK_SET, NULL);
break; break;
} }