ed: Use snprintf() for constructing the scratch filename

This commit is contained in:
sin 2016-01-02 10:32:44 +00:00
parent 3300d5d47a
commit 16159a61ac
1 changed files with 6 additions and 6 deletions

12
ed.c
View File

@ -328,17 +328,17 @@ clearbuf()
static void
setscratch()
{
int k;
int r, k;
char *dir;
clearbuf();
clearundo();
if ((dir = getenv("TMPDIR")) == NULL)
dir = "/tmp/";
if (strlcpy(tmpname, dir, sizeof(tmpname)) >= sizeof(tmpname))
error("scratch file name too long");
if (strlcat(tmpname, "ed.XXXXXX", sizeof(tmpname)) >= sizeof(tmpname))
error("scratch file name too long");
dir = "/tmp";
r = snprintf(tmpname, sizeof(tmpname), "%s/%s",
dir, "ed.XXXXXX");
if (r < 0 || (size_t)r >= sizeof(tmpname))
error("scratch filename too long");
if ((scratch = mkstemp(tmpname)) < 0)
error("failed to create scratch file");
if ((k = makeline("", NULL)))