From a5c7ea4536e59f98683149f4db5b0c0ae938c9ad Mon Sep 17 00:00:00 2001 From: Jincheng Miao Date: Fri, 7 Nov 2014 11:27:00 +0100 Subject: [PATCH] nodeinfo: report error when failure in nodeSetMemoryParameters nodeSetMemoryParameters() will call nodeSetMemoryParameterValue() to set parameters. But it just filter the return code '-2' as failure. Indeed we should report error when rc is negative. https://bugzilla.redhat.com/show_bug.cgi?id=1161541 Signed-off-by: Jincheng Miao --- src/nodeinfo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 2e2fffac11..3c22ebc584 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -1374,8 +1374,7 @@ nodeSetMemoryParameters(virTypedParameterPtr params ATTRIBUTE_UNUSED, for (i = 0; i < nparams; i++) { rc = nodeSetMemoryParameterValue(¶ms[i]); - /* Out of memory */ - if (rc == -2) + if (rc < 0) return -1; }