msxml3: Fixed typo in create_bsc.

This commit is contained in:
Piotr Caban 2008-07-13 23:21:41 +02:00 committed by Alexandre Julliard
parent d50e2df17b
commit 4799f06f20
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}