diff options
author | bviktor <berkeviktor@aol.com> | 2012-07-15 15:39:27 -0700 |
---|---|---|
committer | bviktor <berkeviktor@aol.com> | 2012-07-15 15:39:27 -0700 |
commit | eecc005901dc546bb236c0fea889bbffad0dae68 (patch) | |
tree | 1698558b3942992003dea7539712c713155c8af0 /src/common | |
parent | f78acf5eda59b9c392c067e59817478a9baddbfa (diff) | |
parent | 8f4399f900490fb247f4eb405ef53ea7245603cb (diff) |
Merge pull request #4 from cremno/master
Unescaped backslash in mutex object name
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/xchat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/xchat.c b/src/common/xchat.c index 776bc78c..f90a6291 100644 --- a/src/common/xchat.c +++ b/src/common/xchat.c @@ -972,7 +972,7 @@ main (int argc, char *argv[]) { DWORD error; - mutex = CreateMutex (NULL, TRUE, "Local\hexchat"); + mutex = CreateMutex (NULL, TRUE, "Local\\hexchat"); error = GetLastError (); if (error == ERROR_ALREADY_EXISTS || mutex == NULL) |