summaryrefslogtreecommitdiff
path: root/pjlib/src/pj/unicode_symbian.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib/src/pj/unicode_symbian.cpp')
-rw-r--r--pjlib/src/pj/unicode_symbian.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/pjlib/src/pj/unicode_symbian.cpp b/pjlib/src/pj/unicode_symbian.cpp
index 20a91a2f..5274c4d4 100644
--- a/pjlib/src/pj/unicode_symbian.cpp
+++ b/pjlib/src/pj/unicode_symbian.cpp
@@ -38,7 +38,10 @@ PJ_DEF(wchar_t*) pj_ansi_to_unicode( const char *str, pj_size_t len,
// Error, or there are unconvertable characters
*wbuf = 0;
} else {
- wbuf[len] = 0;
+ if (len < wbuf_count)
+ wbuf[len] = 0;
+ else
+ wbuf[len-1] = 0;
}
return wbuf;
@@ -61,7 +64,10 @@ PJ_DEF(char*) pj_unicode_to_ansi( const wchar_t *wstr, pj_size_t len,
// Error, or there are unconvertable characters
buf[0] = '\0';
} else {
- buf[len] = '\0';
+ if (len < buf_size)
+ buf[len] = '\0';
+ else
+ buf[len-1] = '\0';
}
return buf;