]> git.ipfire.org Git - thirdparty/qemu.git/commit
migration/postcopy: Ensure postcopy_start() sets errp if it fails
authorAvihai Horon <avihaih@nvidia.com>
Thu, 28 Mar 2024 14:02:52 +0000 (16:02 +0200)
committerPeter Xu <peterx@redhat.com>
Sun, 31 Mar 2024 18:30:03 +0000 (14:30 -0400)
commitd0ad271a7613459bd0a3397c8071a4ad06f3f7eb
tree4023e607cf49e17dfc54c117de54a6c937033571
parent30158d885008246f48ee8ef9cdeca220c1bd8586
migration/postcopy: Ensure postcopy_start() sets errp if it fails

There are several places where postcopy_start() fails without setting
errp. This can cause a null pointer de-reference, as in case of error,
the caller of postcopy_start() copies/prints the error set in errp.

Fix it by setting errp in all of postcopy_start() error paths.

Cc: qemu-stable <qemu-stable@nongnu.org>
Fixes: 908927db28ea ("migration: Update error description whenever migration fails")
Signed-off-by: Avihai Horon <avihaih@nvidia.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Link: https://lore.kernel.org/r/20240328140252.16756-3-avihaih@nvidia.com
Signed-off-by: Peter Xu <peterx@redhat.com>
migration/migration.c