mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 13:53:29 +08:00
Fix access to uninitialized variable in fill_in_stop_func
This patch changes find_pc_partial_function so that *block is set to nullptr when it fails, so that fill_in_stop_func won't access an uninitialized variable. gdb/ChangeLog: 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com> * blockframe.c (find_pc_partial_function): Set *block to nullptr when the function fails.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
|
||||||
|
|
||||||
|
* blockframe.c (find_pc_partial_function): Set *block to nullptr
|
||||||
|
when the function fails.
|
||||||
|
|
||||||
2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
|
2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
|
||||||
|
|
||||||
* s390-tdep.c (s390_type_align): New function.
|
* s390-tdep.c (s390_type_align): New function.
|
||||||
|
@ -331,6 +331,8 @@ find_pc_partial_function (CORE_ADDR pc, const char **name, CORE_ADDR *address,
|
|||||||
*address = 0;
|
*address = 0;
|
||||||
if (endaddr != NULL)
|
if (endaddr != NULL)
|
||||||
*endaddr = 0;
|
*endaddr = 0;
|
||||||
|
if (block != nullptr)
|
||||||
|
*block = nullptr;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user