Don't raise an error if the migration cookie is NULL

The v2 migration protocol doesn't use cookies, so we should not
be raising an error if the cookie parameters are NULL.

* src/qemu/qemu_migration.c: Don't raise error if cookie is NULL
This commit is contained in:
Daniel P. Berrange 2011-06-04 06:14:05 -04:00
parent a018c0b910
commit a50f5f6faa

View File

@ -618,11 +618,8 @@ qemuMigrationBakeCookie(qemuMigrationCookiePtr mig,
int *cookieoutlen,
int flags)
{
if (!cookieout || !cookieoutlen) {
qemuReportError(VIR_ERR_INVALID_ARG, "%s",
_("missing migration cookie data"));
return -1;
}
if (!cookieout || !cookieoutlen)
return 0;
*cookieoutlen = 0;