diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-17 18:58:54 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-17 18:58:54 +0300 |
commit | de218850223808a480c092ced92e3097ae553728 (patch) | |
tree | 700c3d623f63246245698832a280f0ca3da7f027 /init.cpp | |
parent | 183f0cbd928afce0ec5267f1d14ca2310e4bca25 (diff) |
modified: init.cpp
modified: main.cpp
modified: messages.cpp
modified: new_gpg.rc
modified: resource.h
Diffstat (limited to 'init.cpp')
-rw-r--r-- | init.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -18,7 +18,7 @@ //global variables
bool bAppendTags = false;
-TCHAR *inopentag, *inclosetag, *outopentag, *outclosetag;
+TCHAR *inopentag = NULL, *inclosetag = NULL, *outopentag = NULL, *outclosetag = NULL, *password = NULL;
list <JabberAccount*> Accounts;
@@ -185,5 +185,7 @@ extern "C" int __declspec(dllexport) Unload(void) mir_free(inclosetag);
mir_free(outopentag);
mir_free(outclosetag);
+ if(password)
+ delete [] password;
return 0;
}
|