From 830a1b8c9e9a26dc1101167ac66a75c444902c4d Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 11 Sep 2015 21:02:19 +0200 Subject: fix two memory leaks reported by gcc Reported-By: gcc -fsanitize=address -fno-sanitize=vptr Git-Dch: Ignore --- methods/https.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'methods/https.h') diff --git a/methods/https.h b/methods/https.h index 29b20b921..167107ad6 100644 --- a/methods/https.h +++ b/methods/https.h @@ -17,6 +17,7 @@ #include #include #include +#include #include "server.h" @@ -67,7 +68,7 @@ class HttpsMethod : public ServerMethod double ultotal, double ulnow); void SetupProxy(); CURL *curl; - ServerState *Server; + std::unique_ptr Server; // Used by ServerMethods unused by https virtual void SendReq(FetchItem *) APT_OVERRIDE { exit(42); } @@ -77,7 +78,7 @@ class HttpsMethod : public ServerMethod FileFd *File; virtual bool Configuration(std::string Message) APT_OVERRIDE; - virtual ServerState * CreateServerState(URI uri) APT_OVERRIDE; + virtual std::unique_ptr CreateServerState(URI const &uri) APT_OVERRIDE; using pkgAcqMethod::FetchResult; using pkgAcqMethod::FetchItem; -- cgit v1.2.3