[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 1/5] thunk: improve readability of allocation loop
From: |
Laurent Vivier |
Subject: |
[Qemu-devel] [PULL 1/5] thunk: improve readability of allocation loop |
Date: |
Mon, 11 Mar 2019 20:11:24 +0100 |
From: Aarushi Mehta <address@hidden>
Signed-off-by: Aarushi Mehta <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 17f3d320bb8e..7f31cffe0968 100644
--- a/thunk.c
+++ b/thunk.c
@@ -86,7 +86,7 @@ void thunk_register_struct(int id, const char *name, const
argtype *types)
#endif
/* now we can alloc the data */
- for(i = 0;i < 2; i++) {
+ for (i = 0; i < ARRAY_SIZE(se->field_offsets); i++) {
offset = 0;
max_align = 1;
se->field_offsets[i] = g_new(int, nb_fields);
--
2.20.1
- [Qemu-devel] [PULL 0/5] Trivial branch patches, Laurent Vivier, 2019/03/11
- [Qemu-devel] [PULL 1/5] thunk: improve readability of allocation loop,
Laurent Vivier <=
- [Qemu-devel] [PULL 3/5] hw/i386: Remove unused include, Laurent Vivier, 2019/03/11
- [Qemu-devel] [PULL 4/5] hw/arm/virt: Remove null-check in virt_build_smbios(), Laurent Vivier, 2019/03/11
- [Qemu-devel] [PULL 2/5] hw/nvram/fw_cfg: Remove the unnecessary boot_splash_filedata_size, Laurent Vivier, 2019/03/11
- [Qemu-devel] [PULL 5/5] hw/nvram/fw_cfg: Use the ldst API, Laurent Vivier, 2019/03/11
- Re: [Qemu-devel] [PULL 0/5] Trivial branch patches, Peter Maydell, 2019/03/12