mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfstests: Don't use tempnam in growfiles.c
tempnam() generates a compiler warning as a dangerous function. This code doesn't care about security issues with tempnam, so remove it and just manually build the filenames without the randomness of tempnam. Signed-off-by: Dave Chinner <david@fromorbit.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
+2
-3
@@ -1162,10 +1162,9 @@ no whole file checking will be performed!\n", Progname, TagName, (int)getpid());
|
||||
/*
|
||||
* construct auto filename and insert them into filenames space
|
||||
*/
|
||||
|
||||
for(ind=0;ind<num_auto_files; ind++, num++) {
|
||||
sprintf((char *)filenames+(num*PATH_MAX), "%s.%d",
|
||||
tempnam(auto_dir, auto_file), ind );
|
||||
sprintf((char *)filenames+(num*PATH_MAX), "%s/%s.%d",
|
||||
auto_dir, auto_file, ind);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user