PR26741, benign use after free in riscv_parse_prefixed_ext
ISO/IEC 9899:1999 C standard "J.2 Undefined behavior" says the following is undefined behaviour: "The value of a pointer that refers to space deallocated by a call to the free or realloc function is used (7.20.3)." PR 26741 * elfxx-riscv.c (riscv_parse_prefixed_ext): Free subset after calculating subset version length.
This commit is contained in:
parent
a7c23ac931
commit
e9cf3691bf
@ -1,3 +1,9 @@
|
||||
2021-01-04 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR 26741
|
||||
* elfxx-riscv.c (riscv_parse_prefixed_ext): Free subset after
|
||||
calculating subset version length.
|
||||
|
||||
2021-01-01 Nicolas Boulenguez <nicolas@debian.org>
|
||||
|
||||
* xcofflink.c: Correct spelling in comments.
|
||||
|
||||
@ -1572,8 +1572,8 @@ riscv_parse_prefixed_ext (riscv_parse_subset_t *rps,
|
||||
riscv_parse_add_subset (rps, subset,
|
||||
major_version,
|
||||
minor_version, FALSE);
|
||||
free (subset);
|
||||
p += end_of_version - subset;
|
||||
free (subset);
|
||||
|
||||
if (*p != '\0' && *p != '_')
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user