Left: | ||
Right: |
OLD | NEW |
---|---|
1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
2 | 2 |
3 #include "PluginWbPassThrough.h" | 3 #include "PluginWbPassThrough.h" |
4 #include "PluginClient.h" | 4 #include "PluginClient.h" |
5 #include "PluginClientFactory.h" | 5 #include "PluginClientFactory.h" |
6 #include "PluginFilter.h" | 6 #include "PluginFilter.h" |
7 #include "PluginSettings.h" | 7 #include "PluginSettings.h" |
8 #include "PluginClass.h" | 8 #include "PluginClass.h" |
9 #include "PluginSystem.h" | 9 #include "PluginSystem.h" |
10 #include <WinInet.h> | 10 #include <WinInet.h> |
11 #include "wtypes.h" | 11 #include "wtypes.h" |
12 #include "../shared/Utils.h" | |
12 | 13 |
13 namespace | 14 namespace |
14 { | 15 { |
15 std::string g_blockedByABPPage = "<!DOCTYPE html>" | 16 std::string g_blockedByABPPage = "<!DOCTYPE html>" |
16 "<html>" | 17 "<html>" |
17 "<body>" | 18 "<body>" |
18 "<!-- blocked by AdblockPlus -->" | 19 "<!-- blocked by AdblockPlus -->" |
19 "</body>" | 20 "</body>" |
20 "</html>"; | 21 "</html>"; |
21 } | 22 } |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
118 //////////////////////////////////////////////////////////////////////////////// //////// | 119 //////////////////////////////////////////////////////////////////////////////// //////// |
119 //WBPassthruSink | 120 //WBPassthruSink |
120 //Monitor and/or cancel every request and responde | 121 //Monitor and/or cancel every request and responde |
121 //WB makes, including images, sounds, scripts, etc | 122 //WB makes, including images, sounds, scripts, etc |
122 //////////////////////////////////////////////////////////////////////////////// //////// | 123 //////////////////////////////////////////////////////////////////////////////// //////// |
123 HRESULT WBPassthruSink::OnStart(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSin k, | 124 HRESULT WBPassthruSink::OnStart(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSin k, |
124 IInternetBindInfo *pOIBindInfo, DWORD grfPI, HAN DLE_PTR dwReserved, | 125 IInternetBindInfo *pOIBindInfo, DWORD grfPI, HAN DLE_PTR dwReserved, |
125 IInternetProtocol* pTargetProtocol, bool& handle d) | 126 IInternetProtocol* pTargetProtocol, bool& handle d) |
126 { | 127 { |
127 m_pTargetProtocol = pTargetProtocol; | 128 m_pTargetProtocol = pTargetProtocol; |
128 bool isBlocked = false; | 129 return BaseClass::OnStart(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwReserved, pTargetProtocol); |
129 CString src = szUrl; | |
130 DEBUG_GENERAL(src); | |
131 CPluginClient::UnescapeUrl(src); | |
132 | |
133 // call the impl of the base class as soon as possible because it initializes the base class | |
134 // members, used by this method. It queries for the required interfaces. | |
135 HRESULT hr = BaseClass::OnStart(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwRese rved, pTargetProtocol); | |
136 if (FAILED(hr)) | |
137 { | |
138 return hr; | |
139 } | |
140 | |
141 CString mimeType; | |
142 if (pOIBindInfo) | |
143 { | |
144 ULONG resLen = 0; | |
145 | |
146 // Apparently IE will report random mime type if there's more then 1 in the list. | |
147 // So we get the whole list and just use the first one (top priority one) | |
148 LPOLESTR mime[10]; | |
149 pOIBindInfo->GetBindString(BINDSTRING_ACCEPT_MIMES, mime, 10, &resLen); | |
sergei
2014/10/28 14:08:46
so, can we rely only on the Accept header?
Oleksandr
2014/10/30 23:40:48
From my experience the Accept header in BeginningT
sergei
2014/10/31 12:47:57
No any idea, I observe the same.
| |
150 if (mime && resLen > 0) | |
151 { | |
152 mimeType.SetString(mime[0]); | |
153 } | |
154 LPOLESTR bindString = nullptr; | |
155 pOIBindInfo->GetBindString(BINDSTRING_FLAG_BIND_TO_OBJECT, &bindString, 1, & resLen); | |
156 LPOLESTR domainRetrieved = nullptr; | |
157 if (resLen == 0 || wcscmp(bindString, L"FALSE") == 0) | |
158 { | |
159 HRESULT hr = pOIBindInfo->GetBindString(BINDSTRING_XDR_ORIGIN, &domainRetr ieved, 1, &resLen); | |
160 if ((hr == S_OK) && domainRetrieved && (resLen > 0)) | |
161 { | |
162 m_boundDomain = domainRetrieved; | |
163 } | |
164 } | |
165 // We can obtain IBindCtx* here, but IEnumString obtained via IBindCtx::Enum ObjectParam | |
166 // does not return any parameter, so it's useless. | |
167 } | |
168 | |
169 CString cookie; | |
170 ULONG len1 = 2048; | |
171 ULONG len2 = 2048; | |
172 | |
173 CPluginTab* tab = CPluginClass::GetTab(::GetCurrentThreadId()); | |
174 CPluginClient* client = CPluginClient::GetInstance(); | |
175 | |
176 if (tab && client) | |
177 { | |
178 CString documentUrl = tab->GetDocumentUrl(); | |
179 // Page is identical to document => don't block | |
180 if (documentUrl == src) | |
181 { | |
182 // fall through | |
183 } | |
184 else if (CPluginSettings::GetInstance()->IsPluginEnabled() && !client->IsWhi telistedUrl(std::wstring(documentUrl))) | |
185 { | |
186 m_boundDomain = tab->GetDocumentUrl(); | |
187 m_contentType = CFilter::contentTypeAny; | |
188 if (tab != nullptr && tab->IsFrameCached(src)) | |
189 { | |
190 m_contentType = CFilter::contentTypeSubdocument; | |
191 } | |
192 else | |
193 { | |
194 m_contentType = GetContentType(mimeType, m_boundDomain, src); | |
195 } | |
196 } | |
197 } | |
198 | |
199 if (tab == nullptr) | |
200 { | |
201 m_contentType = GetContentType(mimeType, m_boundDomain, src); | |
202 } | |
203 | |
204 { | |
205 // Here is the heuristic which detects the requests issued by Flash.ocx. | |
206 // It turned out that the implementation from ''Flash.ocx'' (tested version is 15.0.0.152) | |
207 // returns quite minimal configuration in comparison with the implementation from Microsofts' | |
208 // libraries (see grfBINDF and bindInfo.dwOptions). The impl from MS often i ncludes something | |
209 // else. | |
210 ATL::CComPtr<IBindStatusCallback> bscb; | |
211 if (SUCCEEDED(QueryServiceFromClient(&bscb)) && !!bscb) | |
212 { | |
213 DWORD grfBINDF = 0; | |
214 BINDINFO bindInfo = {}; | |
215 bindInfo.cbSize = sizeof(bindInfo); | |
216 if (SUCCEEDED(bscb->GetBindInfo(&grfBINDF, &bindInfo)) | |
217 && (BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE| BINDF_PULLDATA) == grfBINDF | |
218 && (BINDINFO_OPTIONS_ENABLE_UTF8 | BINDINFO_OPTIONS_USE_IE_ENCODING) == bindInfo.dwOptions | |
219 ) | |
220 { | |
221 m_contentType = CFilter::EContentType::contentTypeObjectSubrequest; | |
222 } | |
223 } | |
224 } | |
225 | |
226 // The descision about EContentType::contentTypeAny is made later in | |
227 // WBPassthruSink::BeginningTransaction. Sometimes here we cannot detect the r equest type, but | |
228 // in WBPassthruSink::BeginningTransaction the header Accept is available whic h allows to | |
229 // obtain the "request type" in our terminology. | |
230 if (nullptr != client | |
231 && CFilter::EContentType::contentTypeAny != m_contentType | |
232 && client->ShouldBlock(static_cast<const wchar_t*>(src), m_contentType, m_bo undDomain, true)) | |
233 { | |
234 isBlocked = true; | |
235 } | |
236 | |
237 // For IE6 and earlier there is iframe back button issue, so avoid it. | |
238 if (isBlocked && client->GetIEVersion() > 6) | |
239 { | |
240 handled = true; | |
241 if (CFilter::EContentType::contentTypeImage == m_contentType) | |
242 { | |
243 // IE shows a cross that img is not loaded | |
244 return INET_E_REDIRECT_FAILED; | |
245 } | |
246 if (CFilter::EContentType::contentTypeSubdocument == m_contentType) | |
247 { | |
248 PassthroughAPP::CustomSinkStartPolicy<WBPassthru, WBPassthruSink>::GetProt ocol(this)->m_shouldSupplyCustomContent = true; | |
249 m_spInternetProtocolSink->ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE, L"t ext/html"); | |
250 m_spInternetProtocolSink->ReportData(BSCF_FIRSTDATANOTIFICATION, 0, static _cast<ULONG>(g_blockedByABPPage.size())); | |
251 return S_OK; | |
252 } | |
253 if (CFilter::EContentType::contentTypeScript == m_contentType) | |
254 { | |
255 m_spInternetProtocolSink->ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE, L"t ext/javascript"); | |
256 m_spInternetProtocolSink->ReportResult(INET_E_REDIRECTING, 301, L"data:"); | |
sergei
2014/10/28 14:08:46
Previously we did that trick for such content type
Oleksandr
2014/10/30 23:40:48
I don't think it's a problem at all. We did the "d
sergei
2014/10/31 12:47:57
It's OK for me.
| |
257 return INET_E_REDIRECT_FAILED; | |
258 } | |
259 if (CFilter::EContentType::contentTypeXmlHttpRequest == m_contentType) | |
260 { | |
261 m_spInternetProtocolSink->ReportResult(INET_E_REDIRECTING, 301, L"data:"); | |
262 return INET_E_REDIRECT_FAILED; | |
263 } | |
264 if (CFilter::EContentType::contentTypeAny != m_contentType) | |
265 { | |
266 m_spInternetProtocolSink->ReportResult(INET_E_REDIRECTING, 301, L"data:"); | |
267 return INET_E_REDIRECT_FAILED; | |
268 } | |
269 } | |
270 | |
271 return isBlocked ? S_FALSE : hr; | |
272 } | 130 } |
273 | 131 |
274 HRESULT WBPassthruSink::OnRead(void* pv, ULONG cb, ULONG* pcbRead) | 132 HRESULT WBPassthruSink::OnRead(void* pv, ULONG cb, ULONG* pcbRead) |
275 { | 133 { |
276 if (pv == nullptr) | 134 if (pv == nullptr) |
277 { | 135 { |
278 return E_POINTER; | 136 return E_POINTER; |
279 } | 137 } |
280 if (pcbRead == nullptr) | 138 if (pcbRead == nullptr) |
281 { | 139 { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
335 */ | 193 */ |
336 return m_spInternetProtocolSink ? m_spInternetProtocolSink->Switch(pProtocolDa ta) : E_UNEXPECTED; | 194 return m_spInternetProtocolSink ? m_spInternetProtocolSink->Switch(pProtocolDa ta) : E_UNEXPECTED; |
337 } | 195 } |
338 | 196 |
339 STDMETHODIMP WBPassthruSink::BeginningTransaction(LPCWSTR szURL, LPCWSTR szHeade rs, DWORD dwReserved, LPWSTR* pszAdditionalHeaders) | 197 STDMETHODIMP WBPassthruSink::BeginningTransaction(LPCWSTR szURL, LPCWSTR szHeade rs, DWORD dwReserved, LPWSTR* pszAdditionalHeaders) |
340 { | 198 { |
341 if (pszAdditionalHeaders) | 199 if (pszAdditionalHeaders) |
342 { | 200 { |
343 *pszAdditionalHeaders = nullptr; | 201 *pszAdditionalHeaders = nullptr; |
344 } | 202 } |
203 std::wstring src = szURL; | |
204 DEBUG_GENERAL(src); | |
sergei
2014/10/28 14:08:46
DEBUG_GENERAL expects ATL::CString, it's not compi
| |
345 | 205 |
346 CPluginClient* client = nullptr; | 206 CComPtr<IHttpNegotiate> spHttpNegotiate; |
347 if (CFilter::EContentType::contentTypeAny == m_contentType && (client = CPlugi nClient::GetInstance())) | 207 QueryServiceFromClient(&spHttpNegotiate); |
208 // This fills the pszAdditionalHeaders with more headers. One of which is the Referer header, which we need. | |
209 // There doesn't seem to be any other way to get this header before the reques t has been made. | |
210 HRESULT nativeHr = spHttpNegotiate ? spHttpNegotiate->BeginningTransaction(szU RL, szHeaders,dwReserved, pszAdditionalHeaders) : S_OK; | |
211 | |
212 auto acceptHeader = [&]() -> std::string | |
348 { | 213 { |
349 auto acceptHeader = [&]() -> std::string | 214 // Despite there is HTTP_QUERY_ACCEPT and other query info flags, they don't work here, |
215 // only HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLAG_REQUEST_HEADERS does d ork. | |
216 ATL::CComPtr<IWinInetHttpInfo> winInetHttpInfo; | |
217 HRESULT hr = m_spTargetProtocol->QueryInterface(&winInetHttpInfo); | |
218 if(FAILED(hr)) | |
350 { | 219 { |
351 // Despite there is HTTP_QUERY_ACCEPT and other query info flags, they don 't work here, | 220 return ""; |
352 // only HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLAG_REQUEST_HEADERS does dork. | 221 } |
353 ATL::CComPtr<IWinInetHttpInfo> winInetHttpInfo; | 222 DWORD size = 0; |
354 HRESULT hr = m_spTargetProtocol->QueryInterface(&winInetHttpInfo); | 223 DWORD flags = 0; |
355 if(FAILED(hr)) | 224 hr = winInetHttpInfo->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLA G_REQUEST_HEADERS, |
225 /*buffer*/nullptr, /* get size */&size, &flags, /*reserved*/ 0); | |
226 if(FAILED(hr)) | |
227 { | |
228 return ""; | |
229 } | |
230 std::string buf(size, '\0'); | |
231 hr = winInetHttpInfo->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLA G_REQUEST_HEADERS, | |
232 &buf[0], &size, &flags, 0); | |
233 if(FAILED(hr)) | |
234 { | |
235 return ""; | |
236 } | |
237 return ExtractHTTPHeader<std::string>(buf, "Accept:", "\r\n"); | |
238 }(); | |
239 m_contentType = GetContentTypeFromMimeType(ATL::CString(acceptHeader.c_str())) ; | |
240 if (*pszAdditionalHeaders != 0) | |
241 { | |
242 m_boundDomain = ExtractHTTPHeader<std::wstring>(std::wstring(*pszAdditionalH eaders), L"Referer:", L"\n").c_str(); | |
243 } | |
244 m_boundDomain = TrimString(m_boundDomain); | |
245 CPluginTab* tab = CPluginClass::GetTab(::GetCurrentThreadId()); | |
246 CPluginClient* client = CPluginClient::GetInstance(); | |
247 | |
248 if (tab && client) | |
249 { | |
250 CString documentUrl = tab->GetDocumentUrl(); | |
251 // Page is identical to document => don't block | |
252 if (documentUrl == ToCString(src)) | |
253 { | |
254 return nativeHr; | |
255 } | |
256 else if (CPluginSettings::GetInstance()->IsPluginEnabled() && !client->IsWhi telistedUrl(std::wstring(documentUrl))) | |
257 { | |
258 if (tab->IsFrameCached(ToCString(src))) | |
356 { | 259 { |
357 return ""; | 260 m_contentType = CFilter::contentTypeSubdocument; |
358 } | 261 } |
359 DWORD size = 0; | |
360 DWORD flags = 0; | |
361 hr = winInetHttpInfo->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_F LAG_REQUEST_HEADERS, | |
362 /*buffer*/nullptr, /* get size */&size, &flags, /*reserved*/ 0); | |
363 if(FAILED(hr)) | |
364 { | |
365 return ""; | |
366 } | |
367 std::string buf(size, '\0'); | |
368 hr = winInetHttpInfo->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_F LAG_REQUEST_HEADERS, | |
369 &buf[0], &size, &flags, 0); | |
370 if(FAILED(hr)) | |
371 { | |
372 return ""; | |
373 } | |
374 char acceptHeader[] = "Accept:"; | |
375 auto acceptHeaderBeginsAt = buf.find(acceptHeader); | |
376 if (std::string::npos == acceptHeaderBeginsAt) | |
377 { | |
378 return ""; | |
379 } | |
380 acceptHeaderBeginsAt += sizeof(acceptHeader); | |
381 auto acceptHeaderEndsAt = buf.find("\n", acceptHeaderBeginsAt); | |
382 if (std::string::npos == acceptHeaderEndsAt) | |
383 { | |
384 return ""; | |
385 } | |
386 return buf.substr(acceptHeaderBeginsAt, acceptHeaderEndsAt - acceptHeaderB eginsAt); | |
387 }(); | |
388 m_contentType = GetContentTypeFromMimeType(ATL::CString(acceptHeader.c_str() )); | |
389 bool isBlocked = client->ShouldBlock(szURL, m_contentType, m_boundDomain, /* debug flag but must be set*/true); | |
390 if (isBlocked) | |
391 { | |
392 m_blockedInTransaction = true; | |
393 return E_ABORT; | |
394 } | 262 } |
395 } | 263 } |
396 CComPtr<IHttpNegotiate> spHttpNegotiate; | 264 |
397 QueryServiceFromClient(&spHttpNegotiate); | 265 { |
398 return spHttpNegotiate ? spHttpNegotiate->BeginningTransaction(szURL, szHeader s,dwReserved, pszAdditionalHeaders) : S_OK; | 266 // Here is the heuristic which detects the requests issued by Flash.ocx. |
sergei
2014/10/28 14:08:46
I've also discovered that flash plugin on my compu
| |
267 // It turned out that the implementation from ''Flash.ocx'' (tested version is 15.0.0.152) | |
268 // returns quite minimal configuration in comparison with the implementation from Microsofts' | |
269 // libraries (see grfBINDF and bindInfo.dwOptions). The impl from MS often i ncludes something | |
270 // else. | |
271 ATL::CComPtr<IBindStatusCallback> bscb; | |
272 if (SUCCEEDED(QueryServiceFromClient(&bscb)) && !!bscb) | |
273 { | |
274 DWORD grfBINDF = 0; | |
275 BINDINFO bindInfo = {}; | |
276 bindInfo.cbSize = sizeof(bindInfo); | |
277 if (SUCCEEDED(bscb->GetBindInfo(&grfBINDF, &bindInfo)) | |
278 && (BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE| BINDF_PULLDATA) == grfBINDF | |
279 && (BINDINFO_OPTIONS_ENABLE_UTF8 | BINDINFO_OPTIONS_USE_IE_ENCODING) == bindInfo.dwOptions | |
280 ) | |
281 { | |
282 m_contentType = CFilter::EContentType::contentTypeObjectSubrequest; | |
283 } | |
284 } | |
285 } | |
286 | |
287 m_blockedInTransaction = client->ShouldBlock(szURL, m_contentType, m_boundDoma in, /*debug flag but must be set*/true); | |
288 // For IE6 and earlier there is iframe back button issue, so avoid it. | |
sergei
2014/10/28 14:08:46
the comment is not relevant here
| |
289 if (m_blockedInTransaction) | |
290 { | |
291 return E_ABORT; | |
292 } | |
293 return nativeHr; | |
399 } | 294 } |
400 | 295 |
401 STDMETHODIMP WBPassthruSink::OnResponse(DWORD dwResponseCode, LPCWSTR szResponse Headers, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders) | 296 STDMETHODIMP WBPassthruSink::OnResponse(DWORD dwResponseCode, LPCWSTR szResponse Headers, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders) |
402 { | 297 { |
403 if (pszAdditionalRequestHeaders) | 298 if (pszAdditionalRequestHeaders) |
404 { | 299 { |
405 *pszAdditionalRequestHeaders = 0; | 300 *pszAdditionalRequestHeaders = 0; |
406 } | 301 } |
407 | 302 |
408 CComPtr<IHttpNegotiate> spHttpNegotiate; | 303 CComPtr<IHttpNegotiate> spHttpNegotiate; |
409 QueryServiceFromClient(&spHttpNegotiate); | 304 QueryServiceFromClient(&spHttpNegotiate); |
410 | 305 |
411 return spHttpNegotiate ? spHttpNegotiate->OnResponse(dwResponseCode, szRespons eHeaders, szRequestHeaders, pszAdditionalRequestHeaders) : S_OK; | 306 return spHttpNegotiate ? spHttpNegotiate->OnResponse(dwResponseCode, szRespons eHeaders, szRequestHeaders, pszAdditionalRequestHeaders) : S_OK; |
412 } | 307 } |
413 | 308 |
414 STDMETHODIMP WBPassthruSink::ReportProgress(ULONG ulStatusCode, LPCWSTR szStatus Text) | 309 STDMETHODIMP WBPassthruSink::ReportProgress(ULONG ulStatusCode, LPCWSTR szStatus Text) |
415 { | 310 { |
416 return m_spInternetProtocolSink ? m_spInternetProtocolSink->ReportProgress(ulS tatusCode, szStatusText) : S_OK; | 311 return m_spInternetProtocolSink ? m_spInternetProtocolSink->ReportProgress(ulS tatusCode, szStatusText) : S_OK; |
417 } | 312 } |
418 | 313 |
419 STDMETHODIMP WBPassthruSink::ReportResult(/* [in] */ HRESULT hrResult, /* [in] * / DWORD dwError, /* [in] */ LPCWSTR szResult) | 314 STDMETHODIMP WBPassthruSink::ReportResult(/* [in] */ HRESULT hrResult, /* [in] * / DWORD dwError, /* [in] */ LPCWSTR szResult) |
420 { | 315 { |
421 if (m_blockedInTransaction) | 316 if (m_blockedInTransaction) |
422 { | 317 { |
423 // Don't notify the client about aborting of the operation, thus don't call BaseClass::ReportResult. | 318 // Don't notify the client about aborting of the operation, thus don't call BaseClass::ReportResult. |
424 // Current method is called by the original protocol implementation and we a re intercepting the | 319 // Current method is called by the original protocol implementation and we a re intercepting the |
425 // call here and eating it, we will call the proper ReportResult later by ou rself. | 320 // call here and eating it, we will call the proper ReportResult later by ou rself. |
sergei
2014/10/28 14:08:46
The code is correct but I've recognized that the c
| |
426 return S_OK; | 321 return S_OK; |
427 } | 322 } |
428 return BaseClass::ReportResult(hrResult, dwError, szResult); | 323 return BaseClass::ReportResult(hrResult, dwError, szResult); |
429 } | 324 } |
430 | 325 |
431 | 326 |
432 WBPassthru::WBPassthru() | 327 WBPassthru::WBPassthru() |
433 : m_shouldSupplyCustomContent(false) | 328 : m_shouldSupplyCustomContent(false) |
434 , m_hasOriginalStartCalled(false) | 329 , m_hasOriginalStartCalled(false) |
435 { | 330 { |
(...skipping 21 matching lines...) Expand all Loading... | |
457 { | 352 { |
458 if (!m_hasOriginalStartCalled) | 353 if (!m_hasOriginalStartCalled) |
459 { | 354 { |
460 return S_OK; | 355 return S_OK; |
461 } | 356 } |
462 return BaseClass::LockRequest(options); | 357 return BaseClass::LockRequest(options); |
463 } | 358 } |
464 | 359 |
465 STDMETHODIMP WBPassthru::UnlockRequest() | 360 STDMETHODIMP WBPassthru::UnlockRequest() |
466 { | 361 { |
467 if (!m_hasOriginalStartCalled) | 362 if (!m_hasOriginalStartCalled) |
sergei
2014/10/28 14:08:46
Since we always call original Start let's delete m
| |
468 { | 363 { |
469 return S_OK; | 364 return S_OK; |
470 } | 365 } |
471 return BaseClass::UnlockRequest(); | 366 return BaseClass::UnlockRequest(); |
472 } | 367 } |
OLD | NEW |