diff options
Diffstat (limited to 'ui-ssdiff.c')
-rw-r--r-- | ui-ssdiff.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui-ssdiff.c b/ui-ssdiff.c index 68c2044..a3dd059 100644 --- a/ui-ssdiff.c +++ b/ui-ssdiff.c | |||
@@ -103,8 +103,7 @@ static int line_from_hunk(char *line, char type) | |||
103 | return 0; | 103 | return 0; |
104 | len = buf2 - buf1; | 104 | len = buf2 - buf1; |
105 | buf2 = xmalloc(len + 1); | 105 | buf2 = xmalloc(len + 1); |
106 | strncpy(buf2, buf1, len); | 106 | strlcpy(buf2, buf1, len + 1); |
107 | buf2[len] = '\0'; | ||
108 | res = atoi(buf2); | 107 | res = atoi(buf2); |
109 | free(buf2); | 108 | free(buf2); |
110 | return res; | 109 | return res; |