aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-04-28 20:36:50 +0000
committerTom Tromey <tromey@redhat.com>2011-04-28 20:36:50 +0000
commitb5dee4ead118643fb1840d9cbac74c8a2a49919a (patch)
tree9fe7b86d3d3233db0a9fddeaed10a63134d06243 /bfd
parent165195f46ba47b0019806c1cd15e80862e5f89cd (diff)
downloadgdb-b5dee4ead118643fb1840d9cbac74c8a2a49919a.zip
gdb-b5dee4ead118643fb1840d9cbac74c8a2a49919a.tar.gz
gdb-b5dee4ead118643fb1840d9cbac74c8a2a49919a.tar.bz2
* bfdio.c (memory_bstat): Pass correct size to memset.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/bfdio.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 8a295fc..8216abd 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-28 Tom Tromey <tromey@redhat.com>
+
+ * bfdio.c (memory_bstat): Pass correct size to memset.
+
2011-04-28 Mike Frysinger <vapier@gentoo.org>
* dwarf2.c (dwarf_debug_sections): Mark const.
diff --git a/bfd/bfdio.c b/bfd/bfdio.c
index ce92781..dab8e88 100644
--- a/bfd/bfdio.c
+++ b/bfd/bfdio.c
@@ -1,7 +1,7 @@
/* Low-level I/O routines for BFDs.
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+ 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011
Free Software Foundation, Inc.
Written by Cygnus Support.
@@ -577,7 +577,7 @@ memory_bstat (bfd *abfd, struct stat *statbuf)
{
struct bfd_in_memory *bim = (struct bfd_in_memory *) abfd->iostream;
- memset (statbuf, 0, sizeof (statbuf));
+ memset (statbuf, 0, sizeof (*statbuf));
statbuf->st_size = bim->size;
return 0;