cpukit/posix/src/aio-misc.c: initialize suspendcbp

Closes #5421
This commit is contained in:
Allan Hessenflow
2026-01-14 10:29:35 -08:00
parent 0b2455f6f8
commit fcfa71aa1c

View File

@@ -203,6 +203,7 @@ rtems_aio_request *init_write_req( struct aiocb* aiocbp )
req->aiocbp = aiocbp;
req->op_type = AIO_OP_WRITE;
req->listcbp = NULL;
req->suspendcbp = NULL;
return req;
}
@@ -250,6 +251,7 @@ rtems_aio_request *init_read_req( struct aiocb* aiocbp )
req->aiocbp = aiocbp;
req->op_type = AIO_OP_READ;
req->listcbp = NULL;
req->suspendcbp = NULL;
return req;
}