summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 078f838)
raw | patch | inline | side by side (parent: 078f838)
author | Fernando J. Pereda <ferdy@gentoo.org> | |
Sun, 20 May 2007 13:35:46 +0000 (15:35 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 20 May 2007 21:40:34 +0000 (14:40 -0700) |
Signed-off-by: Fernando J. Pereda <ferdy@gentoo.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
diff.c | patch | blob | history |
index b28933f870d7dd11596fd3715280e1488ac2430f..3c15553710baa47b47eacdca0188c1afd0ae65a5 100644 (file)
--- a/diff.c
+++ b/diff.c
return external_diff_cmd;
}
-#define TEMPFILE_PATH_LEN 50
-
static struct diff_tempfile {
const char *name; /* filename external diff should read from */
char hex[41];
char mode[10];
- char tmp_path[TEMPFILE_PATH_LEN];
+ char tmp_path[PATH_MAX];
} diff_temp[2];
static int count_lines(const char *data, int size)
{
int fd;
- fd = git_mkstemp(temp->tmp_path, TEMPFILE_PATH_LEN, ".diff_XXXXXX");
+ fd = git_mkstemp(temp->tmp_path, PATH_MAX, ".diff_XXXXXX");
if (fd < 0)
die("unable to create temp-file");
if (write_in_full(fd, blob, size) != size)