qemu-e2k/net
Markus Armbruster 58889fe50a net: 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>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2014-12-19 13:17:02 +00:00
..
checksum.c
clients.h
dump.c
eth.c
hub.c
hub.h
l2tpv3.c net: Use g_new() & friends where that makes obvious sense 2014-12-19 13:17:02 +00:00
Makefile.objs
net.c
netmap.c
queue.c net: Use g_new() & friends where that makes obvious sense 2014-12-19 13:17:02 +00:00
slirp.c net: Use g_new() & friends where that makes obvious sense 2014-12-19 13:17:02 +00:00
socket.c
tap_int.h
tap-aix.c
tap-bsd.c
tap-haiku.c
tap-linux.c
tap-linux.h
tap-solaris.c
tap-win32.c
tap.c
util.c
util.h
vde.c
vhost-user.c