]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-ssdiff.c
ui-ssdiff: ban strncpy()
[ps-cgit] / ui-ssdiff.c
index 68c2044dcc75c8ab58df847c36e0debe3665acba..a3dd0592d84a7379101538c027bb0fea8d8f0279 100644 (file)
@@ -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;