提交 3251fc9c 编写于 作者: P Peter Krempa

remote: daemon: Make sure that JSON symbols are properly loaded at startup

Explicitly call virJSONInitialize at startup of the libvirt daemon so
that we are sure that the symbols in the compat library are properly
loaded. This will prevent any random failure from happening later on
when the daemon would want to use the JSON parser.
Signed-off-by: NPeter Krempa <pkrempa@redhat.com>
上级 9e44c2db
......@@ -2135,6 +2135,10 @@ virJSONValueObjectStealObject;
virJSONValueToString;
# util/virjsoncompat.h
virJSONInitialize;
# util/virkeycode.h
virKeycodeSetTypeFromString;
virKeycodeSetTypeToString;
......
......@@ -59,6 +59,7 @@
#include "virutil.h"
#include "virgettext.h"
#include "util/virnetdevopenvswitch.h"
#include "virjsoncompat.h"
#include "driver.h"
......@@ -1183,6 +1184,9 @@ int main(int argc, char **argv) {
exit(EXIT_FAILURE);
}
if (virJSONInitialize() < 0)
exit(EXIT_FAILURE);
daemonSetupNetDevOpenvswitch(config);
if (daemonSetupAccessManager(config) < 0) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册