oleaut32: Update the marshal state buffer size when resizing (Doh!).

This commit is contained in:
Huw Davies 2006-05-15 10:02:48 +01:00 committed by Alexandre Julliard
parent 99cfc8bdf8
commit 3dce323d69
1 changed files with 1 additions and 0 deletions

View File

@ -86,6 +86,7 @@ xbuf_resize(marshal_state *buf, DWORD newsize)
if(!buf->base)
return E_OUTOFMEMORY;
}
buf->size = newsize;
return S_OK;
}