From: Akihiko Odaki Date: Mon, 9 Oct 2023 16:40:48 +0000 (+0100) Subject: gdbstub: Fix target.xml response X-Git-Tag: qemu-xen-4.20.0~495^2~16 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5d1ab242067cdff30a8fc875933b14e21bb53308;p=qemu-xen.git gdbstub: Fix target.xml response It was failing to return target.xml after the first request. Fixes: 56e534bd11 ("gdbstub: refactor get_feature_xml") Signed-off-by: Akihiko Odaki Message-Id: <20230912224107.29669-3-akihiko.odaki@daynix.com> Signed-off-by: Alex Bennée Message-Id: <20231009164104.369749-10-alex.bennee@linaro.org> --- diff --git a/gdbstub/gdbstub.c b/gdbstub/gdbstub.c index 8eea21450c..4f3762fccf 100644 --- a/gdbstub/gdbstub.c +++ b/gdbstub/gdbstub.c @@ -396,8 +396,8 @@ static const char *get_feature_xml(const char *p, const char **newp, g_string_append(xml, ""); process->target_xml = g_string_free(xml, false); - return process->target_xml; } + return process->target_xml; } /* Is it dynamically generated by the target? */ if (cc->gdb_get_dynamic_xml) {