diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-01-25 22:25:52 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-01-25 22:25:52 +0000 |
commit | d32c7402ad63175d48579a2779d47800a2dd74c2 (patch) | |
tree | c802782c4baf77b838c23bf7cd7025af61006526 /plugins/GmailNotifier/src/check.cpp | |
parent | 97ba0b94c5da04f0d03945baa21c338c77c9dc20 (diff) |
GMailNotifier:
- Minors issues fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11912 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/GmailNotifier/src/check.cpp')
-rw-r--r-- | plugins/GmailNotifier/src/check.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/GmailNotifier/src/check.cpp b/plugins/GmailNotifier/src/check.cpp index 6e407a1afd..91d475e87c 100644 --- a/plugins/GmailNotifier/src/check.cpp +++ b/plugins/GmailNotifier/src/check.cpp @@ -4,9 +4,9 @@ void CheckMailInbox(Account *curAcc)
{
- HINTERNET hHTTPOpen; // internet open handle
- HINTERNET hHTTPConnection; // internet connection hadle
- HINTERNET hHTTPRequest; // internet request hadle
+ // internet connection handle
+ // internet request handle
+ HINTERNET hHTTPConnection = 0, hHTTPRequest = 0;
DBVARIANT dbv;
static char *contentType = "Content-Type: application/x-www-form-urlencoded";
@@ -37,7 +37,8 @@ void CheckMailInbox(Account *curAcc) mir_strcat(str, "]");
db_set_s(curAcc->hContact, "CList", "MyHandle", str);
- hHTTPOpen = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, "", "", 0);
+ // internet open handle
+ HINTERNET hHTTPOpen = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, "", "", 0);
if (!hHTTPOpen) {
mir_strcat(curAcc->results.content, Translate("Can't open Internet!"));
goto error_handle;
@@ -75,6 +76,7 @@ void CheckMailInbox(Account *curAcc) InternetCloseHandle(hHTTPConnection);
InternetCloseHandle(hHTTPRequest);
+ hHTTPRequest = 0;
}
hHTTPConnection = InternetConnectA(hHTTPOpen, "mail.google.com", INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0);
|