Skip to content
Snippets Groups Projects
Commit e16a9b21 authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

Merge remote-tracking branch 'origin/master'

parents ce8d25f0 11be4cd2
No related merge requests found
......@@ -79,6 +79,10 @@ main(void)
char *td = mkdtemp(strdup("/tmp/fiob.XXXXXX"));
isnt(td, NULL, "tempdir is created");
if (td == 0) {
diag("Can't create temporary dir: %s", strerror(errno));
return -1;
}
static char buf[4096];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment