mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-12-19 01:19:41 +08:00
Fix cached_frame allocation in py-unwind
gdb/ * python/py-unwind.c (pyuw_sniffer): Allocate space for registers.
This commit is contained in:
@@ -557,7 +557,10 @@ pyuw_sniffer (const struct frame_unwind *self, struct frame_info *this_frame,
|
||||
saved_reg *reg;
|
||||
int i;
|
||||
|
||||
cached_frame = XNEW (cached_frame_info);
|
||||
cached_frame
|
||||
= ((cached_frame_info *)
|
||||
xmalloc (sizeof (*cached_frame)
|
||||
+ reg_count * sizeof (cached_frame->reg[0])));
|
||||
cached_frame->gdbarch = gdbarch;
|
||||
cached_frame->frame_id = unwind_info->frame_id;
|
||||
cached_frame->reg_count = reg_count;
|
||||
|
||||
Reference in New Issue
Block a user