Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(865)

Unified Diff: ceee/ie/plugin/bho/cookie_accountant.cc

Issue 5290011: Add a lock to the cookie accountant to prevent race conditions in patching... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ceee/ie/plugin/bho/cookie_accountant.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/bho/cookie_accountant.cc
===================================================================
--- ceee/ie/plugin/bho/cookie_accountant.cc (revision 67716)
+++ ceee/ie/plugin/bho/cookie_accountant.cc (working copy)
@@ -35,6 +35,7 @@
CookieAccountant* CookieAccountant::singleton_instance_ = NULL;
CookieAccountant::~CookieAccountant() {
+ AutoLock lock(lock_);
MAD 2010/11/30 22:35:55 I don't think a lock is necessary in the destructo
Cindy Lau 2010/12/01 01:33:15 Done.
if (internet_set_cookie_ex_a_patch_.is_patched())
internet_set_cookie_ex_a_patch_.Unpatch();
if (internet_set_cookie_ex_w_patch_.is_patched())
@@ -222,6 +223,7 @@
}
void CookieAccountant::PatchWininetFunctions() {
+ AutoLock lock(lock_);
MAD 2010/11/30 22:35:55 I don't think it's a good idea to call Patch from
Cindy Lau 2010/12/01 01:33:15 Okay, I rewrote it not to block other threads comi
MAD 2010/12/01 02:14:43 I think the chances are pretty slim since IE still
Sigurður Ásgeirsson 2010/12/01 14:36:40 is_patched() is an inline accessor to a pointer, w
if (!internet_set_cookie_ex_a_patch_.is_patched()) {
DWORD error = internet_set_cookie_ex_a_patch_.Patch(
kMsHtmlModuleName, kWinInetModuleName,
« no previous file with comments | « ceee/ie/plugin/bho/cookie_accountant.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698