[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 19/36] plugins: update lockstep to use g_memdup2
From: |
Alex Bennée |
Subject: |
[PATCH v3 19/36] plugins: update lockstep to use g_memdup2 |
Date: |
Tue, 27 Jun 2023 17:09:26 +0100 |
The old g_memdup is deprecated, use the replacement.
Message-Id: <20230623122100.1640995-21-alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
contrib/plugins/lockstep.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/plugins/lockstep.c b/contrib/plugins/lockstep.c
index e36f0b9562..3614c3564c 100644
--- a/contrib/plugins/lockstep.c
+++ b/contrib/plugins/lockstep.c
@@ -130,7 +130,7 @@ static void report_divergance(ExecState *us, ExecState
*them)
}
}
divergence_log = g_slist_prepend(divergence_log,
- g_memdup(&divrec, sizeof(divrec)));
+ g_memdup2(&divrec, sizeof(divrec)));
/* Output short log entry of going out of sync... */
if (verbose || divrec.distance == 1 || diverged) {
--
2.39.2
- [PATCH v3 12/36] tests/lcitool: Bump fedora container versions, (continued)
- [PATCH v3 12/36] tests/lcitool: Bump fedora container versions, Alex Bennée, 2023/06/27
- [PATCH v3 30/36] linux-user: Add "safe" parameter to do_guest_openat(), Alex Bennée, 2023/06/27
- [PATCH v3 10/36] Makefile: add lcitool-refresh to UNCHECKED_GOALS, Alex Bennée, 2023/06/27
- [PATCH v3 17/36] plugins: force slow path when plugins instrument memory ops, Alex Bennée, 2023/06/27
- [PATCH v3 34/36] gdbstub: Add support for info proc mappings, Alex Bennée, 2023/06/27
- [PATCH v3 22/36] include/hw/qdev-core: fixup kerneldoc annotations, Alex Bennée, 2023/06/27
- [PATCH v3 19/36] plugins: update lockstep to use g_memdup2,
Alex Bennée <=
- [PATCH v3 24/36] docs/devel: split qom-api reference into new file, Alex Bennée, 2023/06/27
- [PATCH v3 33/36] gdbstub: Report the actual qemu-user pid, Alex Bennée, 2023/06/27
- [PATCH v3 23/36] docs/devel/qom.rst: Correct code style, Alex Bennée, 2023/06/27
- [PATCH v3 32/36] gdbstub: Expose gdb_get_process() and gdb_get_first_cpu_in_process(), Alex Bennée, 2023/06/27
- [PATCH v3 29/36] linux-user: Expose do_guest_openat() and do_guest_readlink(), Alex Bennée, 2023/06/27
- [PATCH v3 36/36] tests/tcg: Add a test for info proc mappings, Alex Bennée, 2023/06/27
- [PATCH v3 28/36] gdbstub: clean-up vcont handling to avoid goto, Alex Bennée, 2023/06/27