X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=index-pack.c;h=db58e050410197f6eda4b91705e20a8bfc87b088;hb=9d3014566302ad0d3d378b0a1653959b3118066d;hp=8403c36b63c041fe0c81276391a0bbea906e833d;hpb=82ff9d2c8b0d449fbaae21a69bcc3b98a4012180;p=git.git diff --git a/index-pack.c b/index-pack.c index 8403c36b6..db58e0504 100644 --- a/index-pack.c +++ b/index-pack.c @@ -114,7 +114,7 @@ static const char *open_pack_file(const char *pack_name) static char tmpfile[PATH_MAX]; snprintf(tmpfile, sizeof(tmpfile), "%s/tmp_pack_XXXXXX", get_object_directory()); - output_fd = mkstemp(tmpfile); + output_fd = xmkstemp(tmpfile); pack_name = xstrdup(tmpfile); } else output_fd = open(pack_name, O_CREAT|O_EXCL|O_RDWR, 0600);