Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginMutex.cpp

Issue 5750789393874944: [IE] First round of ATL removal (Closed)
Patch Set: Defect corrections Created June 26, 2014, 3:18 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/plugin/Wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginMutex.cpp
===================================================================
--- a/src/plugin/PluginMutex.cpp
+++ b/src/plugin/PluginMutex.cpp
@@ -19,6 +19,7 @@
m_hMutex = OpenMutexW( MUTEX_ALL_ACCESS, FALSE, mutex_name.c_str() );
if (m_hMutex == NULL)
{
+ mutex_name = L"Local\\AdblockPlus" + name;
m_hMutex = ::CreateMutexW( NULL, FALSE, mutex_name.c_str() );
if (m_hMutex == NULL)
{
« no previous file with comments | « no previous file | src/plugin/Wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld