mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
gdbstub: Fix target_xml initialization
target_xml is no longer a fixed-length array but a pointer to a
variable-length memory.
Fixes: 56e534bd11
("gdbstub: refactor get_feature_xml")
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20230912224107.29669-2-akihiko.odaki@daynix.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20231009164104.369749-9-alex.bennee@linaro.org>
This commit is contained in:
committed by
Alex Bennée
parent
e0f8951235
commit
af2e06c9f1
@ -292,7 +292,7 @@ static int find_cpu_clusters(Object *child, void *opaque)
|
|||||||
assert(cluster->cluster_id != UINT32_MAX);
|
assert(cluster->cluster_id != UINT32_MAX);
|
||||||
process->pid = cluster->cluster_id + 1;
|
process->pid = cluster->cluster_id + 1;
|
||||||
process->attached = false;
|
process->attached = false;
|
||||||
process->target_xml[0] = '\0';
|
process->target_xml = NULL;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user