Module: wine Branch: refs/heads/master Commit: 3dce323d695f69964791ff0b54786823c66f8d69 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=3dce323d695f69964791ff0b...
Author: Huw Davies huw@codeweavers.com Date: Mon May 15 10:02:48 2006 +0100
oleaut32: Update the marshal state buffer size when resizing (Doh!).
---
dlls/oleaut32/tmarshal.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c index b25cc4d..b4c099d 100644 --- a/dlls/oleaut32/tmarshal.c +++ b/dlls/oleaut32/tmarshal.c @@ -86,6 +86,7 @@ xbuf_resize(marshal_state *buf, DWORD ne if(!buf->base) return E_OUTOFMEMORY; } + buf->size = newsize; return S_OK; }