From 3dce323d695f69964791ff0b54786823c66f8d69 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Mon, 15 May 2006 10:02:48 +0100 Subject: [PATCH] oleaut32: Update the marshal state buffer size when resizing (Doh!). --- dlls/oleaut32/tmarshal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c index b25cc4db2b5..b4c099dab08 100644 --- a/dlls/oleaut32/tmarshal.c +++ b/dlls/oleaut32/tmarshal.c @@ -86,6 +86,7 @@ xbuf_resize(marshal_state *buf, DWORD newsize) if(!buf->base) return E_OUTOFMEMORY; } + buf->size = newsize; return S_OK; }