diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-02 18:41:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-02 23:00:56 +0300 |
commit | 6d97cdf25db274a81e9d9edc417b51cf44152733 (patch) | |
tree | 142f1cc00b1733bb54980a863932c96c7a98fa73 /src/utils/copynpaste.cpp | |
parent | 6b83725f3acf5a1e4dd08f4f243609fc66a38c22 (diff) | |
download | plus-6d97cdf25db274a81e9d9edc417b51cf44152733.tar.gz plus-6d97cdf25db274a81e9d9edc417b51cf44152733.tar.bz2 plus-6d97cdf25db274a81e9d9edc417b51cf44152733.tar.xz plus-6d97cdf25db274a81e9d9edc417b51cf44152733.zip |
Fix some memory leaks and missing initialisations.
Diffstat (limited to 'src/utils/copynpaste.cpp')
-rw-r--r-- | src/utils/copynpaste.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index 58740a243..5b1ccb5bc 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -57,7 +57,7 @@ bool retrieveBuffer(std::string& text, std::string::size_type& pos) if (len > 0) { // Convert from UTF-16 to UTF-8 - void *temp = malloc(len); + void *temp = calloc(len, 1); if (WideCharToMultiByte(CP_UTF8, 0, data, -1, (LPSTR)temp, len, NULL, NULL)) { |