ui-ssdiff: ban strncpy()

Git upstream bans strncpy() with commit:

  banned.h: mark strncpy() as banned
  e488b7aba743d23b830d239dcc33d9ca0745a9ad

Signed-off-by: Christian Hesse <mail@eworm.de>
Este commit está contenido en:
Christian Hesse 2018-08-28 18:22:26 +02:00
padre 2fc008d6de
commit 0899eb644f
Se han modificado 1 ficheros con 1 adiciones y 2 borrados

Ver fichero

@ -103,8 +103,7 @@ static int line_from_hunk(char *line, char type)
return 0;
len = buf2 - buf1;
buf2 = xmalloc(len + 1);
strncpy(buf2, buf1, len);
buf2[len] = '\0';
strlcpy(buf2, buf1, len + 1);
res = atoi(buf2);
free(buf2);
return res;