diff options
Diffstat (limited to 'plugins/Weather/src')
-rw-r--r-- | plugins/Weather/src/weather_conv.cpp | 2 | ||||
-rw-r--r-- | plugins/Weather/src/weather_data.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Weather/src/weather_conv.cpp b/plugins/Weather/src/weather_conv.cpp index abf04c0839..64fa4fa6d6 100644 --- a/plugins/Weather/src/weather_conv.cpp +++ b/plugins/Weather/src/weather_conv.cpp @@ -442,7 +442,7 @@ void TrimString(WCHAR *str) {
size_t len, start;
- len = wcslen(str);
+ len = mir_wstrlen(str);
while(len && (unsigned char)str[len-1] <= ' ') str[--len] = 0;
for(start=0; (unsigned char)str[start] <= ' ' && str[start]; start++);
memmove(str, str+start, (len-start+1)*sizeof(WCHAR));
diff --git a/plugins/Weather/src/weather_data.cpp b/plugins/Weather/src/weather_data.cpp index f47db595de..a5e9c5737d 100644 --- a/plugins/Weather/src/weather_data.cpp +++ b/plugins/Weather/src/weather_data.cpp @@ -405,7 +405,7 @@ void wfree(char **Data) void wfree(WCHAR **Data)
{
- if (*Data && wcslen(*Data) > 0)
+ if (*Data && mir_wstrlen(*Data) > 0)
mir_free(*Data);
*Data = NULL;
}
|