Browse Source

qemu-io: Fix memory leak in 'aio_write -z'

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
pull/41/head
Kevin Wolf 10 years ago
parent
commit
0e01b76e7c
  1. 1
      qemu-io-cmds.c

1
qemu-io-cmds.c

@ -1699,6 +1699,7 @@ static int aio_write_f(BlockBackend *blk, int argc, char **argv)
int64_t count = cvtnum(argv[optind]);
if (count < 0) {
print_cvtnum_err(count, argv[optind]);
g_free(ctx);
return 0;
}

Loading…
Cancel
Save