+Wed Feb 6 17:22:34 CET 2008 Daniel Veillard <veillard@redhat.com>
+
+ * src/qemu_conf.c: applied 2 patches from Guido Guenther to avoid
+ crashes when reading the config file
+
Tue Feb 3 20:26:53 CET 2008 Jim Meyering <meyering@redhat.com>
Fix new "make distcheck" failures.
} else if (!strcmp((char *)prop, "network")) {
def->os.bootDevs[def->os.nBootDevs++] = QEMUD_BOOT_NET;
} else {
+ qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
+ "unknown boot dev \'%s\'", (char*)prop);
goto error;
}
xmlFree(prop);
if (!(def = qemudParseVMDef(NULL, driver, xml, file))) {
virErrorPtr err = virGetLastError();
qemudLog(QEMUD_WARN, "Error parsing QEMU guest config '%s' : %s",
- path, err->message);
+ path, err ? err->message :
+ "BUG: unknown error - please report it\n");
return NULL;
}