ifcfg-rh: dbus method return values need to be allocated

This commit is contained in:
Dan Williams
2010-02-17 17:23:18 -08:00
parent d0f5c92ed9
commit 6b7ec3894a

View File

@@ -563,8 +563,8 @@ impl_ifcfgrh_get_ifcfg_details (SCPluginIfcfg *plugin,
return FALSE;
}
*out_uuid = uuid;
*out_path = path;
*out_uuid = g_strdup (uuid);
*out_path = g_strdup (path);
return TRUE;
}