[binutils-gdb] Avoid bogus compile time warning from clang by initialising local data structure using memset.
Nick Clifton
nickc@sourceware.org
Thu Nov 23 15:53:00 GMT 2017
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=eb02c04dc3600e18bb06dc1ef8fc3cf9a967d550
commit eb02c04dc3600e18bb06dc1ef8fc3cf9a967d550
Author: Pavel I. Kryukov <kryukov@frtk.ru>
Date: Thu Nov 23 15:53:04 2017 +0000
Avoid bogus compile time warning from clang by initialising local data structure using memset.
PR 22485
* readelf.c (process_archive): Use memset to initiaise
thin_filedata structure.
Diff:
---
binutils/ChangeLog | 6 ++++++
binutils/readelf.c | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 53d8507..32df4b9 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,9 @@
+2017-11-23 Pavel I. Kryukov <kryukov@frtk.ru>
+
+ PR 22485
+ * readelf.c (process_archive): Use memset to initiaise
+ thin_filedata structure.
+
2017-11-21 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/22451
diff --git a/binutils/readelf.c b/binutils/readelf.c
index ea7cc3e..5944ebe 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -18845,7 +18845,9 @@ process_archive (Filedata * filedata, bfd_boolean is_thin_archive)
}
else if (is_thin_archive)
{
- Filedata thin_filedata = { 0 };
+ Filedata thin_filedata;
+
+ memset (&thin_filedata, 0, sizeof (thin_filedata));
/* PR 15140: Allow for corrupt thin archives. */
if (nested_arch.file == NULL)
More information about the Binutils-cvs
mailing list