diff options
| author | Enji Cooper <ngie@FreeBSD.org> | 2015-04-11 03:18:14 +0000 |
|---|---|---|
| committer | Enji Cooper <ngie@FreeBSD.org> | 2015-04-11 03:18:14 +0000 |
| commit | b74bcac4bd3e6a7a68bca0239ec9946b06889549 (patch) | |
| tree | c8972dbd853f771c3e20057c6e4b51ae866f966b | |
| parent | c7ded8ba9e2b5304c3e1ff215f8d19c6c1b57fae (diff) | |
Notes
| -rw-r--r-- | tools/regression/sockets/sendfile/sendfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/regression/sockets/sendfile/sendfile.c b/tools/regression/sockets/sendfile/sendfile.c index 73033d75c15f..18ae9adadd46 100644 --- a/tools/regression/sockets/sendfile/sendfile.c +++ b/tools/regression/sockets/sendfile/sendfile.c @@ -452,8 +452,8 @@ run_parent(void) static void cleanup(void) { - if (*path != '\0') - unlink(path); + + unlink(path); } int @@ -461,12 +461,12 @@ main(int argc, char *argv[]) { int pagesize; - *path = '\0'; + path[0] = '\0'; pagesize = getpagesize(); if (argc == 1) { - snprintf(path, PATH_MAX, "/tmp/sendfile.XXXXXXXXXXXX"); + snprintf(path, sizeof(path), "sendfile.XXXXXXXXXXXX"); file_fd = mkstemp(path); if (file_fd == -1) FAIL_ERR("mkstemp"); |
