summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocols/SkypeWeb/src/skype_db.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_db.h b/protocols/SkypeWeb/src/skype_db.h
index d42d7f40b4..f9b3f7b021 100644
--- a/protocols/SkypeWeb/src/skype_db.h
+++ b/protocols/SkypeWeb/src/skype_db.h
@@ -62,7 +62,7 @@ public:
__inline operator WCHAR *() const { return data; }
__inline operator INT_PTR() const { return (INT_PTR)data; }
__inline WCHAR * detach() { WCHAR *res = data; data = NULL; return res; }
- __inline void zero() { if (data) SecureZeroMemory(data, (mir_wstrlen(data)*sizeof(TCHAR))); }
+ __inline void zero() { if (data) SecureZeroMemory(data, (mir_wstrlen(data)*sizeof(WCHAR))); }
};
typedef pass_ptrW pass_ptrT;