diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-14 01:44:14 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-14 01:44:14 +0300 |
commit | bd1b6d4572236472864378238968b3c4cb02afa0 (patch) | |
tree | ca87add7c2ccf0518062445b1c311311d5b43b53 /gpg_wrapper.cpp | |
parent | a8e58dc8f24d10dd4de16f19ace4740350d9b9cc (diff) |
fixed miranda lock on filetransfers, encryption/decryption thread timeout set to 10 minutes
Diffstat (limited to 'gpg_wrapper.cpp')
-rw-r--r-- | gpg_wrapper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpg_wrapper.cpp b/gpg_wrapper.cpp index e549af7..14f0c74 100644 --- a/gpg_wrapper.cpp +++ b/gpg_wrapper.cpp @@ -93,8 +93,8 @@ pxResult pxExecute(wstring *acommandline, char *ainput, string *aoutput, LPDWORD commandline += _T("--display-charset utf-8 "); commandline += _T("-z 9 "); commandline += *acommandline; - mir_free(bin_path); - mir_free(home_dir); + delete [] bin_path; //hmm + delete [] home_dir; } debuglog<<"gpg in: "<<commandline<<"\n"; |