author | Alexey Izbyshev <izbyshev@ispras.ru> | 2022年10月07日 15:23:57 +0300 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2022年10月19日 14:01:32 -0400 |
commit | 26c76a908b8613ea8a77d40f3bd51b02f984501c (patch) | |
tree | 14c3b07590672b8554ca50f246fe7b55a0283829 /src | |
parent | aebd6a36449e91c06763a40121d558b6cea90d50 (diff) | |
download | musl-26c76a908b8613ea8a77d40f3bd51b02f984501c.tar.gz |
-rw-r--r-- | src/aio/aio_suspend.c | 2 |
diff --git a/src/aio/aio_suspend.c b/src/aio/aio_suspend.c index 95def796..1f0c9aaa 100644 --- a/src/aio/aio_suspend.c +++ b/src/aio/aio_suspend.c @@ -9,7 +9,7 @@ int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec { int i, tid = 0, ret, expect = 0; struct timespec at; - volatile int dummy_fut, *pfut; + volatile int dummy_fut = 0, *pfut; int nzcnt = 0; const struct aiocb *cb = 0; |