diff options
author | George Hazan <george.hazan@gmail.com> | 2024-07-30 18:06:01 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-07-30 18:06:01 +0300 |
commit | 966a705e634e3c934f5ac14dce1524714d2b31f0 (patch) | |
tree | 7ba5b5be239b3ff2a4ce44c2fb14e16c004800b1 /plugins/SendScreenshotPlus/src/CSend.h | |
parent | 5850e4aa99a509df796745e358bb59d9205a37c6 (diff) |
fixes #4563 (SendSS: Crash with Imgur, Image Shack & Upload Pie)
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSend.h')
-rw-r--r-- | plugins/SendScreenshotPlus/src/CSend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSend.h b/plugins/SendScreenshotPlus/src/CSend.h index fc7985574a..dee2e01dc3 100644 --- a/plugins/SendScreenshotPlus/src/CSend.h +++ b/plugins/SendScreenshotPlus/src/CSend.h @@ -98,7 +98,7 @@ protected: wchar_t* m_ErrorMsg;
wchar_t* m_ErrorTitle;
- MHttpRequest m_nlhr;
+ std::unique_ptr<MHttpRequest> m_pRequest;
void Unhook(){if(m_hOnSend) {UnhookEvent(m_hOnSend);m_hOnSend = nullptr;}}
void DB_EventAdd(uint16_t EventType);
|