[libvirt] [PATCH] esx: avoid null dereference on error

Eric Blake eblake at redhat.com
Tue May 3 19:10:17 UTC 2011


Detected by clang.

* src/esx/esx_driver.c (esxDomainGetInfo): Fail early on error.
---
 src/esx/esx_driver.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
index 1f8f90b..e929208 100644
--- a/src/esx/esx_driver.c
+++ b/src/esx/esx_driver.c
@@ -2372,8 +2372,9 @@ esxDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info)

                 if (perfEntityMetric == NULL) {
                     VIR_ERROR(_("QueryPerf returned object with unexpected type '%s'"),
                               esxVI_Type_ToString(perfEntityMetricBase->_type));
+                    goto cleanup;
                 }

                 perfMetricIntSeries =
                   esxVI_PerfMetricIntSeries_DynamicCast(perfEntityMetric->value);
-- 
1.7.4.4




More information about the libvir-list mailing list