diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-05-08 14:57:59 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-05-08 16:20:40 +0200 |
commit | c22553effb151532eb95fc1f7bb17a3aebe63202 (patch) | |
tree | 6064f0d1bf34b0ec8aaebd04cd1758c81f4666ce /dirent/tst-scandir.c | |
parent | support: Delete temporary files in LIFO order (diff) | |
download | glibc-c22553effb151532eb95fc1f7bb17a3aebe63202.tar.gz glibc-c22553effb151532eb95fc1f7bb17a3aebe63202.tar.bz2 glibc-c22553effb151532eb95fc1f7bb17a3aebe63202.zip |
support: Prevent multiple deletion of temporary files
Otherwise, another user might recreate these files after the first
deletion. Particularly with temporary directories, this could result
in the removal of unintended files through symbol link attacks.
Diffstat (limited to 'dirent/tst-scandir.c')
-rw-r--r-- | dirent/tst-scandir.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dirent/tst-scandir.c b/dirent/tst-scandir.c index 09d19ab4e4..4ecfd7b932 100644 --- a/dirent/tst-scandir.c +++ b/dirent/tst-scandir.c @@ -293,7 +293,6 @@ do_test (void) remove_file (scandir_test_dir, "aa"); remove_file (scandir_test_dir, "b"); remove_file (scandir_test_dir, "a"); - rmdir (scandir_test_dir); return 0; } |