mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 06:50:22 +03:00
rpc: Clear more in virNetMessageClearPayload
Set all counters to 0. This doesn't impact current users, but future users will want this
This commit is contained in:
parent
220c4e85b3
commit
64bd680d42
@ -56,7 +56,13 @@ virNetMessageClearPayload(virNetMessagePtr msg)
|
||||
|
||||
for (i = 0; i < msg->nfds; i++)
|
||||
VIR_FORCE_CLOSE(msg->fds[i]);
|
||||
|
||||
msg->donefds = 0;
|
||||
msg->nfds = 0;
|
||||
VIR_FREE(msg->fds);
|
||||
|
||||
msg->bufferOffset = 0;
|
||||
msg->bufferLength = 0;
|
||||
VIR_FREE(msg->buffer);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user