Commit 4799f06f authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msxml3: Fixed typo in create_bsc.

parent d50e2df1
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment