[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 18/21] contrib/plugins: fix imatch
From: |
Alex Bennée |
Subject: |
[PATCH v3 18/21] contrib/plugins: fix imatch |
Date: |
Mon, 22 Jan 2024 14:56:07 +0000 |
We can't directly save the ephemeral imatch from argv as that memory
will get recycled.
Message-Id: <20240103173349.398526-40-alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
contrib/plugins/execlog.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/plugins/execlog.c b/contrib/plugins/execlog.c
index 82dc2f584e2..f262e5555eb 100644
--- a/contrib/plugins/execlog.c
+++ b/contrib/plugins/execlog.c
@@ -199,7 +199,7 @@ static void parse_insn_match(char *match)
if (!imatches) {
imatches = g_ptr_array_new();
}
- g_ptr_array_add(imatches, match);
+ g_ptr_array_add(imatches, g_strdup(match));
}
static void parse_vaddr_match(char *match)
--
2.39.2
- [PATCH v3 12/21] gdbstub: Infer number of core registers from XML, (continued)
- [PATCH v3 12/21] gdbstub: Infer number of core registers from XML, Alex Bennée, 2024/01/22
- [PATCH v3 09/21] gdbstub: Use GDBFeature for GDBRegisterState, Alex Bennée, 2024/01/22
- [PATCH v3 13/21] hw/core/cpu: Remove gdb_get_dynamic_xml member, Alex Bennée, 2024/01/22
- [PATCH v3 15/21] plugins: Use different helpers when reading registers, Alex Bennée, 2024/01/22
- [PATCH v3 14/21] gdbstub: Add members to identify registers to GDBFeature, Alex Bennée, 2024/01/22
- [PATCH v3 17/21] plugins: add an API to read registers, Alex Bennée, 2024/01/22
- [PATCH v3 21/21] docs/devel: document some plugin assumptions, Alex Bennée, 2024/01/22
- [PATCH v3 16/21] gdbstub: expose api to find registers, Alex Bennée, 2024/01/22
- [PATCH v3 19/21] contrib/plugins: extend execlog to track register changes, Alex Bennée, 2024/01/22
- [PATCH v3 18/21] contrib/plugins: fix imatch,
Alex Bennée <=
- [PATCH v3 20/21] docs/devel: lift example and plugin API sections up, Alex Bennée, 2024/01/22