Explorar el Código

Clear buffer for no locale compilation

master
Arun Prakash Jana hace 5 años
padre
commit
8a7d2bd1ed
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      src/nnn.c

+ 5
- 0
src/nnn.c Ver fichero

@@ -2398,6 +2398,11 @@ static char *unescape(const char *str, uint maxcols, wchar_t **wstr)
static wchar_t wbuf[NAME_MAX + 1] __attribute__ ((aligned));
wchar_t *buf = wbuf;
size_t lencount = 0;

#ifdef NOLOCALE
memset(wbuf, 0, sizeof(wbuf));
#endif

/* Convert multi-byte to wide char */
size_t len = mbstowcs(wbuf, str, NAME_MAX);



Cargando…
Cancelar
Guardar