mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
2016-06-11 Paul Pluzhnikov <ppluzhnikov@google.com>
[BZ #19670] [BZ #19672] * io/test-lfs.c (do_prepare): Use xmalloc. * io/tst-fcntl.c (do_prepare): Likewise. * libio/tst-fopenloc.c (do_bz17916): Likewise. * libio/tst-mmap2-eofsync.c (do_prepare): Likewise. * posix/tst-exec.c (do_prepare): Likewise. * posix/tst-pathconf.c (prepare): Likewise. * posix/tst-spawn.c (do_prepare): Likewise. * posix/tst-truncate.c (do_prepare): Likewise. * rt/tst-aio.c (do_prepare): Likewise.
This commit is contained in:
@ -53,7 +53,7 @@ do_prepare (int argc, char *argv[])
|
||||
struct rlimit64 rlim;
|
||||
|
||||
name_len = strlen (test_dir);
|
||||
name = malloc (name_len + sizeof ("/lfsXXXXXX"));
|
||||
name = xmalloc (name_len + sizeof ("/lfsXXXXXX"));
|
||||
mempcpy (mempcpy (name, test_dir, name_len),
|
||||
"/lfsXXXXXX", sizeof ("/lfsXXXXXX"));
|
||||
|
||||
|
Reference in New Issue
Block a user