提交 46d4a5e0 编写于 作者: C Cole Robinson

Fix segfault with console device back compat.

上级 dd9b3fb5
Fri Jan 16 11:48:41 EST 2009 Cole Robinson <crobinso@redhat.com>
* src/domain_conf.c: Fix segfault with console device back compat.
Thu Jan 15 20:12:19 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/remote_internal.c: Fix bug when fork isn't available (Win32)
......
......@@ -3328,8 +3328,9 @@ char *virDomainDefFormat(virConnectPtr conn,
if (virDomainChrDefFormat(conn, &buf, def->console, "console") < 0)
goto cleanup;
} else if (def->nserials != 0) {
/* ..else for legacy compat duplicate the serial device as a console */
if (virDomainChrDefFormat(conn, &buf, def->serials[n], "console") < 0)
/* ..else for legacy compat duplicate the first serial device as a
* console */
if (virDomainChrDefFormat(conn, &buf, def->serials[0], "console") < 0)
goto cleanup;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册