Skip to content

Commit

Permalink
virtiofsd: Changed allocation of lo_map_elems to GLib's functions
Browse files Browse the repository at this point in the history
Replaced (re)allocation of lo_map_elem structs from realloc() to
GLib's g_try_realloc_n() and replaced the respective free() call
with a g_free().

Signed-off-by: Mahmoud Mandour <ma.mandourr@gmail.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20210420154643.58439-5-ma.mandourr@gmail.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
  • Loading branch information
i3abghany authored and dagrh committed May 6, 2021
1 parent f90a2d6 commit e85d6d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/virtiofsd/passthrough_ll.c
Expand Up @@ -406,7 +406,7 @@ static void lo_map_init(struct lo_map *map)

static void lo_map_destroy(struct lo_map *map)
{
free(map->elems);
g_free(map->elems);
}

static int lo_map_grow(struct lo_map *map, size_t new_nelems)
Expand All @@ -418,7 +418,7 @@ static int lo_map_grow(struct lo_map *map, size_t new_nelems)
return 1;
}

new_elems = realloc(map->elems, sizeof(map->elems[0]) * new_nelems);
new_elems = g_try_realloc_n(map->elems, new_nelems, sizeof(map->elems[0]));
if (!new_elems) {
return 0;
}
Expand Down

0 comments on commit e85d6d1

Please sign in to comment.