]> git.proxmox.com Git - mirror_qemu.git/commit - util/iov.c
util: Use g_new() & friends where that makes obvious sense
authorMarkus Armbruster <armbru@redhat.com>
Thu, 4 Dec 2014 14:00:03 +0000 (15:00 +0100)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 10 Dec 2014 08:34:15 +0000 (11:34 +0300)
commite1cf5582644ef63528993fb2b88dd3b43b9914c6
tree003ca1aa1cb4dab97435244da51b25c6ee8de482
parent9be71be5bda27b068176ab9b982cf3d7d41a4acd
util: Use g_new() & friends where that makes obvious sense

g_new(T, n) is neater than g_malloc(sizeof(T) * n).  It's also safer,
for two reasons.  One, it catches multiplication overflowing size_t.
Two, it returns T * rather than void *, which lets the compiler catch
more type errors.

This commit only touches allocations with size arguments of the form
sizeof(T).

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
util/hbitmap.c
util/iov.c