diff options
| -rw-r--r-- | libc/misc/locale/locale.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/locale/locale.c b/libc/misc/locale/locale.c index 40303ab14..e8fddf67c 100644 --- a/libc/misc/locale/locale.c +++ b/libc/misc/locale/locale.c @@ -1292,7 +1292,7 @@ __locale_t newlocale(int category_mask, const char *locale, __locale_t base)  	}  #else  	if (!base) { -		base = malloc(sizeof(struct __uclibc_locale_struct)); +		base = calloc(1, sizeof(struct __uclibc_locale_struct));  		if (base == NULL)  			return base;  		_locale_init_l(base);  | 
