summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/src/LCDFramework/misc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirandaG15/src/LCDFramework/misc.cpp')
-rw-r--r--plugins/MirandaG15/src/LCDFramework/misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirandaG15/src/LCDFramework/misc.cpp b/plugins/MirandaG15/src/LCDFramework/misc.cpp
index 3e861fb529..eb9f2edcf8 100644
--- a/plugins/MirandaG15/src/LCDFramework/misc.cpp
+++ b/plugins/MirandaG15/src/LCDFramework/misc.cpp
@@ -79,7 +79,7 @@ toNarrowString( const wchar_t* pStr , int len )
// nb: slightly naughty to write directly into the string like this
string buf ;
buf.resize( nChars ) ;
- char *test = (char*)malloc((nChars+1)*sizeof(char));
+ //char *test = (char*)malloc((nChars+1)*sizeof(char));
WideCharToMultiByte( CP_ACP , 0 , pStr , len ,
const_cast<char*>(buf.c_str()), nChars , NULL , NULL ) ;