summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxrdwrv/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxrdwrv/test.c')
-rw-r--r--testsuites/psxtests/psxrdwrv/test.c4
1 files changed, 2 insertions, 2 deletions
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);