From 318094ec3e19577dc7da50dbce03ff0eb299d54a Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 31 Oct 1999 17:36:47 +0000 Subject: [PATCH] IMalloc16_Constructor: moved ICOM_VTBL(This) where it belongs. --- dlls/ole32/ifs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ole32/ifs.c b/dlls/ole32/ifs.c index 3033bf8c097..ed72c958c91 100644 --- a/dlls/ole32/ifs.c +++ b/dlls/ole32/ifs.c @@ -221,8 +221,8 @@ IMalloc16_Constructor() { VTENT(DidAlloc); VTENT(HeapMinimize); #undef VTENT - ICOM_VTBL(This) = (ICOM_VTABLE(IMalloc16)*)SEGPTR_GET(msegvt16); } + ICOM_VTBL(This) = (ICOM_VTABLE(IMalloc16)*)SEGPTR_GET(msegvt16); This->ref = 1; /* FIXME: implement multiple heaps */ This->heap = GlobalAlloc16(GMEM_MOVEABLE,64000); -- 2.11.4.GIT