From: Lennart Poettering Date: Mon, 25 Jul 2016 18:35:04 +0000 (+0200) Subject: fileio: imply /tmp as directory if passed as NULL to open_tmpfile_unlinkable() X-Git-Tag: v231~2^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87410f166eb5e0f06703bd82fdec2fb47afb58ef;p=thirdparty%2Fsystemd.git fileio: imply /tmp as directory if passed as NULL to open_tmpfile_unlinkable() We can make this smarter one day, to honour $TMPDIR and friends, but for now, let's just use /tmp. --- diff --git a/src/basic/fileio.c b/src/basic/fileio.c index 47ccfc39d8f..f183de49992 100644 --- a/src/basic/fileio.c +++ b/src/basic/fileio.c @@ -1259,7 +1259,8 @@ int open_tmpfile_unlinkable(const char *directory, int flags) { char *p; int fd; - assert(directory); + if (!directory) + directory = "/tmp"; /* Returns an unlinked temporary file that cannot be linked into the file system anymore */