diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2016-06-11 14:50:16 -0700 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2016-06-11 14:50:16 -0700 |
commit | 850c67606e56e1a47fa0466e127f7b8ceda6ebe3 (patch) | |
tree | 0d8f4cf68b0d2792c7e5bcd420fd1d35f6ff3d35 /io | |
parent | b7a9b7b05b6c5b4da16975065e37d6e0b8401a6c (diff) | |
download | glibc-850c67606e56e1a47fa0466e127f7b8ceda6ebe3.tar glibc-850c67606e56e1a47fa0466e127f7b8ceda6ebe3.tar.gz glibc-850c67606e56e1a47fa0466e127f7b8ceda6ebe3.tar.bz2 glibc-850c67606e56e1a47fa0466e127f7b8ceda6ebe3.zip |
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.
Diffstat (limited to 'io')
-rw-r--r-- | io/test-lfs.c | 2 | ||||
-rw-r--r-- | io/tst-fcntl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/io/test-lfs.c b/io/test-lfs.c index 3088a21fd8..0c911774a7 100644 --- a/io/test-lfs.c +++ b/io/test-lfs.c @@ -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")); diff --git a/io/tst-fcntl.c b/io/tst-fcntl.c index 98a642e5fc..e8782b0aae 100644 --- a/io/tst-fcntl.c +++ b/io/tst-fcntl.c @@ -47,7 +47,7 @@ do_prepare (int argc, char *argv[]) size_t name_len; name_len = strlen (test_dir); - name = malloc (name_len + sizeof ("/fcntlXXXXXX")); + name = xmalloc (name_len + sizeof ("/fcntlXXXXXX")); mempcpy (mempcpy (name, test_dir, name_len), "/fcntlXXXXXX", sizeof ("/fcntlXXXXXX")); /* Create the temporary file. */ |