From daf3e389b479f28b306e7c88ecc49119f0bbf542 Mon Sep 17 00:00:00 2001 From: Alexander Gluzsky Date: Wed, 31 Jul 2013 23:16:34 +0000 Subject: fixed few logic bugs fixed few memory leaks prevent db helper functions from returning uninitialized ptr git-svn-id: http://svn.miranda-ng.org/main/trunk@5542 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/New_GPG/src/messages.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'plugins/New_GPG/src/messages.cpp') diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp index 5c702b7484..add6cd23ae 100755 --- a/plugins/New_GPG/src/messages.cpp +++ b/plugins/New_GPG/src/messages.cpp @@ -596,6 +596,7 @@ INT_PTR RecvMsgSvc(WPARAM w, LPARAM l) } } } + mir_free(jid); } } if(!strstr(msg, "-----BEGIN PGP MESSAGE-----")) @@ -933,6 +934,7 @@ int HookSendMsg(WPARAM w, LPARAM l) } } } + mir_free(jid); } } else @@ -1023,6 +1025,7 @@ static INT_PTR CALLBACK DlgProcKeyPassword(HWND hwndDlg, UINT msg, WPARAM wParam TranslateDialogDefault(hwndDlg); string questionstr = "Please enter password for key with ID: "; questionstr += inkeyid; + mir_free(inkeyid); SetDlgItemTextA(hwndDlg, IDC_KEYID, questionstr.c_str()); EnableWindow(GetDlgItem(hwndDlg, IDC_DEFAULT_PASSWORD), 0); return TRUE; -- cgit v1.2.3