diff options
Diffstat (limited to 'module.c')
| -rw-r--r-- | module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module.c b/module.c index e77d569768..91f0e61cbb 100644 --- a/module.c +++ b/module.c @@ -59,7 +59,7 @@ void register_module_init(void (*fn)(void), module_init_type type) ModuleEntry *e; ModuleTypeList *l; - e = qemu_mallocz(sizeof(*e)); + e = g_malloc0(sizeof(*e)); e->init = fn; l = find_type(type); |