diff options
author | George Hazan <george.hazan@gmail.com> | 2024-01-04 11:24:49 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-01-04 11:24:49 +0300 |
commit | 2b6d50f7fdfaca84c3ee82909800ad67d2e99bdc (patch) | |
tree | 0fa8e6a2bb01de68127d9e45c27978fb43e267c3 /protocols/GmailNotifier/src/check.cpp | |
parent | 9ae82271f8dc01e32df1c76cfec64771bc5ee6d0 (diff) |
NETLIBHTTPREQUEST::cbSize = old unused field removed
Diffstat (limited to 'protocols/GmailNotifier/src/check.cpp')
-rw-r--r-- | protocols/GmailNotifier/src/check.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/protocols/GmailNotifier/src/check.cpp b/protocols/GmailNotifier/src/check.cpp index fab62e5283..b5fa2d2dee 100644 --- a/protocols/GmailNotifier/src/check.cpp +++ b/protocols/GmailNotifier/src/check.cpp @@ -72,7 +72,6 @@ void CheckMailInbox(Account *curAcc) }; NETLIBHTTPREQUEST nlr = {}; - nlr.cbSize = sizeof(nlr); nlr.szUrl = szUrl.GetBuffer(); nlr.requestType = REQUEST_POST; nlr.headersCount = _countof(headers); @@ -105,7 +104,6 @@ void CheckMailInbox(Account *curAcc) }; NETLIBHTTPREQUEST nlr = {}; - nlr.cbSize = sizeof(nlr); nlr.szUrl = szUrl.GetBuffer(); nlr.requestType = REQUEST_GET; nlr.headers = headers; |