mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
virHashAddOrUpdateEntry: Turn @new_name into void *
In 9190f0b0 we've tried to fix an OOM. And boy, was that fix successful. But back then, the hash table implementation worked strictly over string keys, which is not the case anymore. Hash table have this function keyCopy() which returns void *. Therefore a local variable that is temporarily holding the intermediate return value from that function should be void * too. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
2b3fb38fab
commit
890676d26b
@ -334,7 +334,7 @@ virHashAddOrUpdateEntry(virHashTablePtr table, const void *name,
|
||||
{
|
||||
size_t key, len = 0;
|
||||
virHashEntryPtr entry;
|
||||
char *new_name;
|
||||
void *new_name;
|
||||
|
||||
if ((table == NULL) || (name == NULL))
|
||||
return -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user