mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix lio_listio return value in LIO_WAIT mode
This commit is contained in:
parent
200f96c6a0
commit
a753f7fe7a
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, st
|
|||
if (mode == LIO_WAIT) {
|
||||
ret = lio_wait(st);
|
||||
free(st);
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (st) {
|
||||
|
|
Loading…
Add table
Reference in a new issue