X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=path.c;h=7ef0d1b80d926d832816a587ddff721cb03130b3;hb=3c4e8a636f4de3668b24d0020df731cdc78ae6e9;hp=d217ef0b7f04d7e021770cb50a7c58c14bc7920d;hpb=98e031f0bb6e857c684e6db24d03d22cfc1a532a;p=git.git diff --git a/path.c b/path.c index d217ef0b..7ef0d1b8 100644 --- a/path.c +++ b/path.c @@ -58,3 +58,29 @@ char *git_path(const char *fmt, ...) return bad_path; return cleanup_path(pathname); } + + +/* git_mkstemp() - create tmp file honoring TMPDIR variable */ +int git_mkstemp(char *path, size_t len, const char *template) +{ + char *env, *pch = path; + + if ((env = getenv("TMPDIR")) == NULL) { + strcpy(pch, "/tmp/"); + len -= 5; + } else + len -= snprintf(pch, len, "%s/", env); + + safe_strncpy(pch, template, len); + + return mkstemp(path); +} + + +char *safe_strncpy(char *dest, const char *src, size_t n) +{ + strncpy(dest, src, n); + dest[n - 1] = '\0'; + + return dest; +}