From: Daniel P. Berrange Date: Mon, 19 Jul 2010 17:59:34 +0000 (+0100) Subject: Remove bogus free of static strings X-Git-Tag: v0.8.3~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d13418890e642b5c437a0bc90078964fad8d716;p=thirdparty%2Flibvirt.git Remove bogus free of static strings Remove bogus free of statically allocated strings introduced in 03ca42046a54c5cfadb2e69194896abf06f6a10f * src/conf/capabilities.c: Don't free static strings for default disk driver type/name --- diff --git a/src/conf/capabilities.c b/src/conf/capabilities.c index 36f97b9b3f..4478d85f40 100644 --- a/src/conf/capabilities.c +++ b/src/conf/capabilities.c @@ -175,9 +175,6 @@ virCapabilitiesFree(virCapsPtr caps) { VIR_FREE(caps->host.secModel.doi); virCPUDefFree(caps->host.cpu); - VIR_FREE(caps->defaultDiskDriverName); - VIR_FREE(caps->defaultDiskDriverType); - VIR_FREE(caps); }