]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
daemon: Clear fake domain def object that is used to check ACL prior to use
authorPeter Krempa <pkrempa@redhat.com>
Wed, 25 Mar 2015 07:52:26 +0000 (08:52 +0100)
committerCole Robinson <crobinso@redhat.com>
Mon, 27 Apr 2015 23:54:54 +0000 (19:54 -0400)
The fake object is used to pass the domain name and UUID to the ACL code
for events where we don't have the full domain def when dispatching
events. The rest of the entries would be left uninitialized. While this
is not a problem code-wise as the used fields are initialized it looks
ugly in the debugger.

(cherry picked from commit 6ca857c7c8a1f7b571132d6c7fff5a06301a5e9a)

daemon/remote.c

index 9431cc398f92accaef122be39b62ef3ec411c525..185bcde8b8ebeb56c4ee258d08701b9ef018d491 100644 (file)
@@ -150,6 +150,7 @@ remoteRelayDomainEventCheckACL(virNetServerClientPtr client,
     /* For now, we just create a virDomainDef with enough contents to
      * satisfy what viraccessdriverpolkit.c references.  This is a bit
      * fragile, but I don't know of anything better.  */
+    memset(&def, 0, sizeof(def));
     def.name = dom->name;
     memcpy(def.uuid, dom->uuid, VIR_UUID_BUFLEN);