From c1d8ee4cdc094b3595d2f4d0cdfc17a53f85716c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 17 Dec 2013 10:59:13 +0100 Subject: libcsupport: Accept NULL for zero-length entries --- testsuites/psxtests/psxrdwrv/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuites/psxtests/psxrdwrv') diff --git a/testsuites/psxtests/psxrdwrv/test.c b/testsuites/psxtests/psxrdwrv/test.c index 0e066746a9..181d9d42a1 100644 --- a/testsuites/psxtests/psxrdwrv/test.c +++ b/testsuites/psxtests/psxrdwrv/test.c @@ -361,7 +361,7 @@ int doErrorTest(void) /* writev -- all zero length buffers */ vec[0].iov_base = vec; vec[0].iov_len = 0; - vec[1].iov_base = vec; + vec[1].iov_base = NULL; vec[1].iov_len = 0; puts("writev iov_len works with no effect -- OK"); rc = writev(fd, vec, 2); @@ -374,7 +374,7 @@ int doErrorTest(void) /* readv -- all zero length buffers */ vec[0].iov_base = vec; vec[0].iov_len = 0; - vec[1].iov_base = vec; + vec[1].iov_base = NULL; vec[1].iov_len = 0; puts("readv iov_len works with no effect -- OK"); rc = readv(fd, vec, 2); -- cgit v1.2.3