[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PULL 10/10] thunk: fix of malloc to g_new
From: |
Laurent Vivier |
Subject: |
[qemu-s390x] [PULL 10/10] thunk: fix of malloc to g_new |
Date: |
Wed, 6 Mar 2019 12:07:11 +0100 |
From: Aarushi Mehta <address@hidden>
Note that since thunking occurs throughout the lifetime of the QEMU
instance, there is no matching 'free' to correct.
Signed-off-by: Aarushi Mehta <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Laurent Vivier <address@hidden>
---
thunk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/thunk.c b/thunk.c
index d5d8645cd4f1..17f3d320bb8e 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);
--
2.20.1
- [qemu-s390x] [PULL 00/10] Trivial branch patches, Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 05/10] block/pflash_cfi02: Fix memory leak and potential use-after-free, Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 07/10] bswap: Fix accessors syntax in comment, Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 04/10] hw/acpi: remove unnecessary variable acpi_table_builtin, Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 03/10] hw/acpi: remove unused function acpi_table_add_builtin(), Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 02/10] hw/i386/pc.c: remove unused function pc_acpi_init(), Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 10/10] thunk: fix of malloc to g_new,
Laurent Vivier <=
- [qemu-s390x] [PULL 08/10] build: Correct explanation of unnest-vars example, Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 09/10] hostmem-file: simplify ifdef-s in file_backend_memory_alloc(), Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 06/10] doc: fix typos for documents in tree, Laurent Vivier, 2019/03/06
- [qemu-s390x] [PULL 01/10] tests: Remove (mostly) useless architecture checks, Laurent Vivier, 2019/03/06
- Re: [qemu-s390x] [Qemu-devel] [PULL 00/10] Trivial branch patches, Peter Maydell, 2019/03/06