diff options
Diffstat (limited to 'chrome_frame/urlmon_url_request.h')
-rw-r--r-- | chrome_frame/urlmon_url_request.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome_frame/urlmon_url_request.h b/chrome_frame/urlmon_url_request.h index 325edb8..894a431 100644 --- a/chrome_frame/urlmon_url_request.h +++ b/chrome_frame/urlmon_url_request.h @@ -34,8 +34,11 @@ class UrlmonUrlRequestManager : private: struct MonikerForUrl { + MonikerForUrl() { + memset(&bind_opts, 0, sizeof(bind_opts)); + } ScopedComPtr<IMoniker> moniker; - ScopedComPtr<IBindCtx> bind_ctx; + BIND_OPTS bind_opts; std::wstring url; }; |