aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ic/c_src/oe_ei_decode_wstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ic/c_src/oe_ei_decode_wstring.c')
-rw-r--r--lib/ic/c_src/oe_ei_decode_wstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ic/c_src/oe_ei_decode_wstring.c b/lib/ic/c_src/oe_ei_decode_wstring.c
index 5b676fd579..66eaf66392 100644
--- a/lib/ic/c_src/oe_ei_decode_wstring.c
+++ b/lib/ic/c_src/oe_ei_decode_wstring.c
@@ -76,7 +76,7 @@ int oe_ei_decode_wstring(const char *buf, int *index, CORBA_wchar *p) {
if (p) { /* Decoding part */
/* Allocate temporary string */
- tmp_space = (char*) malloc(length*(__OE_WCHARSZ__+1));
+ tmp_space = (char*) malloc((length + 1)*sizeof(char));
if ((error_code = ei_decode_string(buf, index, tmp_space)) < 0)
return error_code;