mirror of https://github.com/xemu-project/xemu.git
![]() The argument for an Error **errp parameter must point to a null pointer. If it doesn't, and an error happens, error_set() fails its assertion. Instead of foo(foos, errp); bar(bars, errp); you need to do something like Error *err = NULL; foo(foos, &err); if (err) { error_propagate(errp, err); goto out; } bar(bars, errp); out: Screwed up in commit |
||
---|---|---|
.. | ||
Makefile.objs | ||
container.c | ||
cpu.c | ||
object.c | ||
object_interfaces.c | ||
qom-qobject.c |