rpc: fix resource leak

Commit 252610f7dd switched to use hash to store servers.
Function virHashGetItems returns allocated array which needs
to be freed also for successful path, not only if there is
an error.

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
(cherry picked from commit ab0a461b8c)
This commit is contained in:
Pavel Hrdina 2017-04-09 12:55:09 +02:00 committed by Cole Robinson
parent c714afcc99
commit e675e874fa

View File

@ -401,6 +401,7 @@ virNetDaemonPreExecRestart(virNetDaemonPtr dmn)
} }
} }
VIR_FREE(srvArray);
virObjectUnlock(dmn); virObjectUnlock(dmn);
return object; return object;