diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-01-05 00:26:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-01-05 00:26:42 +0000 |
commit | 0af5b6adb15ef147a98dba61eda7f14f0d296e2d (patch) | |
tree | e338bf6407431210a709df350080e4795af772d8 /rt/tst-aio8.c | |
parent | 9759bbf188a13130bf8384694d24ac5493830d13 (diff) | |
download | glibc-0af5b6adb15ef147a98dba61eda7f14f0d296e2d.tar glibc-0af5b6adb15ef147a98dba61eda7f14f0d296e2d.tar.gz glibc-0af5b6adb15ef147a98dba61eda7f14f0d296e2d.tar.bz2 glibc-0af5b6adb15ef147a98dba61eda7f14f0d296e2d.zip |
(do_test): aio_offset should be initialized, too.
Diffstat (limited to 'rt/tst-aio8.c')
-rw-r--r-- | rt/tst-aio8.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rt/tst-aio8.c b/rt/tst-aio8.c index 531a08ac27..b03639dabd 100644 --- a/rt/tst-aio8.c +++ b/rt/tst-aio8.c @@ -21,6 +21,7 @@ do_test (void) req.aio_reqprio = 0; req.aio_buf = (void *) "hello"; req.aio_nbytes = 5; + req.aio_offset = 0; req.aio_sigevent.sigev_notify = SIGEV_NONE; struct aiocb *list[1]; |