From a1a8e18b1d95d6dab18580e856de6264b1a04d9c Mon Sep 17 00:00:00 2001 From: david_kim31 Date: Thu, 2 May 2013 11:25:47 +0900 Subject: [PATCH] Fix memory leak Change-Id: I5af99ff066d747e1427abd2fe07d22f70035782a Signed-off-by: david_kim31 --- src/system/FSys_SystemInfoImpl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system/FSys_SystemInfoImpl.cpp b/src/system/FSys_SystemInfoImpl.cpp index 3d8b722..d7ec067 100644 --- a/src/system/FSys_SystemInfoImpl.cpp +++ b/src/system/FSys_SystemInfoImpl.cpp @@ -149,9 +149,9 @@ static const wchar_t* _SUPPORTED = L"Supported"; static const wchar_t* _UNSUPPORTED = L"Unsupported"; static bool firstRequest = false; -static HashMap integerList; -static HashMap boolList; -static HashMap stringList; +static HashMap integerList(SingleObjectDeleter); +static HashMap boolList(SingleObjectDeleter); +static HashMap stringList(SingleObjectDeleter); void PrepareCache(void) -- 2.7.4