From 6ae22663c0c2fe6af0f2787683d2a171262a66d0 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 19 Aug 2010 14:52:31 +0200 Subject: [PATCH] mshtml: Don't use start_binding in IPersistStreamInit::InitNew. --- dlls/mshtml/persist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/persist.c b/dlls/mshtml/persist.c index 76e377332e6..89a056f312c 100644 --- a/dlls/mshtml/persist.c +++ b/dlls/mshtml/persist.c @@ -736,7 +736,7 @@ static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface) if(FAILED(hres)) return hres; - return start_binding(This->window, NULL, (BSCallback*)This->window->bscallback, NULL); + return channelbsc_load_stream(This->window->bscallback, NULL); } #undef PERSTRINIT_THIS