mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-30 21:42:06 -06:00
io_uring: do not use pointer after free
Even though only the pointer value is only printed, it is untidy and Coverity complains. Cc: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20201113154102.1460459-1-pbonzini@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
ece4fa9152
commit
bd89f93603
1 changed files with 1 additions and 1 deletions
|
@ -425,6 +425,6 @@ LuringState *luring_init(Error **errp)
|
||||||
void luring_cleanup(LuringState *s)
|
void luring_cleanup(LuringState *s)
|
||||||
{
|
{
|
||||||
io_uring_queue_exit(&s->ring);
|
io_uring_queue_exit(&s->ring);
|
||||||
g_free(s);
|
|
||||||
trace_luring_cleanup_state(s);
|
trace_luring_cleanup_state(s);
|
||||||
|
g_free(s);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue