diff options
author | Alan Modra <amodra@gmail.com> | 2022-09-12 18:50:53 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-09-14 10:19:56 +0930 |
commit | 3cb5e955a372f0303992340a164a21ca5cf6d006 (patch) | |
tree | e63a61549c7efb54e30676e39f67bc9fa365f2eb /bfd/vms-alpha.c | |
parent | f15ba945a49b75c23f8133f3be170a681bb050de (diff) | |
download | gdb-3cb5e955a372f0303992340a164a21ca5cf6d006.zip gdb-3cb5e955a372f0303992340a164a21ca5cf6d006.tar.gz gdb-3cb5e955a372f0303992340a164a21ca5cf6d006.tar.bz2 |
msan: vms-alpha use-of-uninitialized-value in dst_retrieve_location
* vms-alpha.c (dst_define_location): Init any unused entries.
Diffstat (limited to 'bfd/vms-alpha.c')
-rw-r--r-- | bfd/vms-alpha.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/vms-alpha.c b/bfd/vms-alpha.c index 0ea9ed5..9db4763 100644 --- a/bfd/vms-alpha.c +++ b/bfd/vms-alpha.c @@ -1570,6 +1570,8 @@ dst_define_location (bfd *abfd, unsigned int loc) (loc + 1) * sizeof (unsigned int)); if (PRIV (dst_ptr_offsets) == NULL) return false; + memset (PRIV (dst_ptr_offsets) + PRIV (dst_ptr_offsets_count), 0, + (loc - PRIV (dst_ptr_offsets_count)) * sizeof (unsigned int)); PRIV (dst_ptr_offsets_count) = loc + 1; } |