diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/coffcode.h | 4 | ||||
-rw-r--r-- | bfd/version.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index b81195d..a2ee036 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -909,7 +909,9 @@ fill_comdat_hash (bfd *abfd) if (! _bfd_coff_get_external_symbols (abfd)) return true; - esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd); + esymstart = esym = obj_coff_external_syms (abfd); + if (esym == NULL) + return true; esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd); for (struct internal_syment isym; diff --git a/bfd/version.h b/bfd/version.h index 7573409..864ebe4 100644 --- a/bfd/version.h +++ b/bfd/version.h @@ -16,7 +16,7 @@ In releases, the date is not included in either version strings or sonames. */ -#define BFD_VERSION_DATE 20250724 +#define BFD_VERSION_DATE 20250728 #define BFD_VERSION @bfd_version@ #define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@ #define REPORT_BUGS_TO @report_bugs_to@ |