diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-07-29 22:17:00 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-07-29 22:17:00 +0300 |
commit | 5d6a4181191ec5eb92f2596fe6099f4009ec12ff (patch) | |
tree | 376a62e8f3c8e7a1300b2bd3a07124c25dc6d5d1 /src/init.cpp | |
parent | 4b918c8f61749cfc0cfc9a8abd0c3b06af042faf (diff) |
fixed memorry corruption's
improoved autoexchange
Diffstat (limited to 'src/init.cpp')
-rwxr-xr-x | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index b87e76f..90030b0 100755 --- a/src/init.cpp +++ b/src/init.cpp @@ -283,6 +283,6 @@ extern "C" int __declspec(dllexport) Unload(void) mir_free(outopentag);
mir_free(outclosetag);
if(password)
- delete [] password;
+ mir_free(password);
return 0;
}
|