]> git.cameronkatri.com Git - cgit.git/blobdiff - ui-ssdiff.c
ui-snapshot: filter permitted snapshot requests
[cgit.git] / ui-ssdiff.c
index 16c812ffdc74143434e8925adb37b3d949d93fb9..7f261ed53a0077fa3fd4a8dab3db1fcdcf247a8c 100644 (file)
@@ -92,7 +92,7 @@ static char *longest_common_subsequence(char *A, char *B)
 static int line_from_hunk(char *line, char type)
 {
        char *buf1, *buf2;
-       int len;
+       int len, res;
 
        buf1 = strchr(line, type);
        if (buf1 == NULL)
@@ -105,7 +105,7 @@ static int line_from_hunk(char *line, char type)
        buf2 = xmalloc(len + 1);
        strncpy(buf2, buf1, len);
        buf2[len] = '\0';
-       int res = atoi(buf2);
+       res = atoi(buf2);
        free(buf2);
        return res;
 }