提交 8600849d 编写于 作者: R Rich Felker

fix uninitialized variable in lio (aio) code

上级 20d01d83
......@@ -13,7 +13,7 @@ struct lio_state {
static int lio_wait(struct lio_state *st)
{
int i, err, got_err;
int i, err, got_err = 0;
int cnt = st->cnt;
struct aiocb **cbs = st->cbs;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册