about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ui-ssdiff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-ssdiff.c b/ui-ssdiff.c index 16c812f..7f261ed 100644 --- a/ui-ssdiff.c +++ b/ui-ssdiff.c
@@ -92,7 +92,7 @@ static char *longest_common_subsequence(char *A, char *B)
92static int line_from_hunk(char *line, char type) 92static int line_from_hunk(char *line, char type)
93{ 93{
94 char *buf1, *buf2; 94 char *buf1, *buf2;
95 int len; 95 int len, res;
96 96
97 buf1 = strchr(line, type); 97 buf1 = strchr(line, type);
98 if (buf1 == NULL) 98 if (buf1 == NULL)
@@ -105,7 +105,7 @@ static int line_from_hunk(char *line, char type)
105 buf2 = xmalloc(len + 1); 105 buf2 = xmalloc(len + 1);
106 strncpy(buf2, buf1, len); 106 strncpy(buf2, buf1, len);
107 buf2[len] = '\0'; 107 buf2[len] = '\0';
108 int res = atoi(buf2); 108 res = atoi(buf2);
109 free(buf2); 109 free(buf2);
110 return res; 110 return res;
111} 111}