diff options
-rw-r--r-- | chrome_frame/protocol_sink_wrap.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome_frame/protocol_sink_wrap.cc b/chrome_frame/protocol_sink_wrap.cc index 64d9048..5bae7e4 100644 --- a/chrome_frame/protocol_sink_wrap.cc +++ b/chrome_frame/protocol_sink_wrap.cc @@ -809,6 +809,9 @@ STDMETHODIMP Hook_LockRequest(InternetProtocol_LockRequest_Fn orig_req, return S_OK; } + // We are just pass through at this point, avoid false positive crash + // reports. + ExceptionBarrierReportOnlyModule barrier; return orig_req(protocol, options); } @@ -822,6 +825,9 @@ STDMETHODIMP Hook_UnlockRequest(InternetProtocol_UnlockRequest_Fn orig_req, return S_OK; } + // We are just pass through at this point, avoid false positive crash + // reports. + ExceptionBarrierReportOnlyModule barrier; return orig_req(protocol); } |