* symfile.c (generic_load): Initialize data_count properly.

This commit is contained in:
Stan Shebs 1996-04-05 03:07:54 +00:00
parent 3e3ee48f73
commit 67c1413d7f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Apr 4 19:04:18 1996 Stan Shebs <shebs@andros.cygnus.com>
* symfile.c (generic_load): Initialize data_count properly.
Thu Apr 4 17:17:53 1996 Fred Fish <fnf@cygnus.com>
* symmisc.c (print_objfile_statistics): Print memory used by

View File

@ -919,7 +919,7 @@ generic_load (filename, from_tty)
asection *s;
bfd *loadfile_bfd;
time_t start_time, end_time; /* Start and end times of download */
unsigned long data_count; /* Number of bytes transferred to memory */
unsigned long data_count = 0; /* Number of bytes transferred to memory */
loadfile_bfd = bfd_openr (filename, gnutarget);
if (loadfile_bfd == NULL)