X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=builtin-tar-tree.c;h=f6310b9032374d6fd262b807d85987465887cdbf;hb=210a0be504829bad5a2821488d3c25cc406fed4a;hp=58a8ccd4d6af0d755fca28b06a12ca9b8efa5300;hpb=52ba03cbb1c718093946f5254187082bd7b32845;p=git.git diff --git a/builtin-tar-tree.c b/builtin-tar-tree.c index 58a8ccd4..f6310b90 100644 --- a/builtin-tar-tree.c +++ b/builtin-tar-tree.c @@ -240,8 +240,8 @@ static void write_entry(const unsigned char *sha1, struct strbuf *path, /* XXX: should we provide more meaningful info here? */ sprintf(header.uid, "%07o", 0); sprintf(header.gid, "%07o", 0); - strncpy(header.uname, "git", 31); - strncpy(header.gname, "git", 31); + safe_strncpy(header.uname, "git", sizeof(header.uname)); + safe_strncpy(header.gname, "git", sizeof(header.gname)); sprintf(header.devmajor, "%07o", 0); sprintf(header.devminor, "%07o", 0);