diff options
Diffstat (limited to 'common/utf8conv.c')
-rw-r--r-- | common/utf8conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/utf8conv.c b/common/utf8conv.c index 4ad514247..16baa0d4d 100644 --- a/common/utf8conv.c +++ b/common/utf8conv.c @@ -802,7 +802,7 @@ utf8_to_wchar (const char *string) jnlib_set_errno (ENOMEM); return NULL; } - result = malloc (nbytes); + result = jnlib_malloc (nbytes); if (!result) return NULL; |