From 4799f06f206c5e82c89ff35bc69673651ff71bfb Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Sun, 13 Jul 2008 23:21:41 +0200 Subject: [PATCH] msxml3: Fixed typo in create_bsc. --- dlls/msxml3/domdoc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index a2d72433e38..588a2ab1a41 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -299,12 +299,13 @@ static const struct IBindStatusCallbackVtbl bsc_vtbl = static bsc_t *create_bsc(domdoc *doc) { - bsc_t *bsc = HeapAlloc(GetProcessHeap(), 0, sizeof(bsc)); + bsc_t *bsc = HeapAlloc(GetProcessHeap(), 0, sizeof(bsc_t)); bsc->lpVtbl = &bsc_vtbl; bsc->ref = 1; bsc->doc = doc; bsc->binding = NULL; + bsc->memstream = NULL; return bsc; }