aboutsummaryrefslogtreecommitdiff
path: root/thunk.c
diff options
context:
space:
mode:
authorAarushi Mehta <mehta.aaru20@gmail.com>2019-03-02 01:11:42 +0530
committerLaurent Vivier <laurent@vivier.eu>2019-03-06 11:27:32 +0100
commit0e081fde8a3d80383adf2e802fc0c03af44c5436 (patch)
treed1b8a14a2aa6900d21b7b1d4339a9a8e92657d85 /thunk.c
parent5c7ba877ef54e6a90982db729b4fda8c4790ef67 (diff)
thunk: fix of malloc to g_new
Note that since thunking occurs throughout the lifetime of the QEMU instance, there is no matching 'free' to correct. Signed-off-by: Aarushi Mehta <mehta.aaru20@gmail.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <5310bd5d152fa36c1828a7cbd19fc893739d1609.camel@gmail.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'thunk.c')
-rw-r--r--thunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thunk.c b/thunk.c
index d5d8645cd4..17f3d320bb 100644
--- a/thunk.c
+++ b/thunk.c
@@ -89,7 +89,7 @@ void thunk_register_struct(int id, const char *name, const argtype *types)
for(i = 0;i < 2; i++) {
offset = 0;
max_align = 1;
- se->field_offsets[i] = malloc(nb_fields * sizeof(int));
+ se->field_offsets[i] = g_new(int, nb_fields);
type_ptr = se->field_types;
for(j = 0;j < nb_fields; j++) {
size = thunk_type_size(type_ptr, i);