Remove bogus free of static strings

Remove bogus free of statically allocated strings introduced
in 03ca42046a

* src/conf/capabilities.c: Don't free static strings for
  default disk driver type/name
This commit is contained in:
Daniel P. Berrange 2010-07-19 18:59:34 +01:00
parent f0c8e1cb37
commit 4d13418890

View File

@ -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);
}