summaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-10-09 16:34:30 +0000
committerNick Clifton <nickc@redhat.com>2013-10-09 16:34:30 +0000
commiteeb1ab0110cb7bb9aa9af4c21e0ee4c91758727b (patch)
tree777de6ebf83690ca4c169562c9e079420244e5d9 /gprof
parent9cc84e86500217bfe5353eefe582ea50bde8374e (diff)
downloadbinutils-redhat-eeb1ab0110cb7bb9aa9af4c21e0ee4c91758727b.tar.gz
PR gprof/16027
* source.c (annotate_source): Close ifp. * corefile.c (read_function_mappings): Close file.
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog6
-rw-r--r--gprof/corefile.c5
-rw-r--r--gprof/source.c3
3 files changed, 11 insertions, 3 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 1eb0c65ae0..fc6cb9fc9d 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,9 @@
+2013-10-09 Nick Clifton <nickc@redhat.com>
+
+ PR gprof/16027
+ * source.c (annotate_source): Close ifp.
+ * corefile.c (read_function_mappings): Close file.
+
2013-09-20 Alan Modra <amodra@gmail.com>
* configure: Regenerate.
diff --git a/gprof/corefile.c b/gprof/corefile.c
index 0aabbadeba..44184dc9d4 100644
--- a/gprof/corefile.c
+++ b/gprof/corefile.c
@@ -1,7 +1,6 @@
/* corefile.c
- Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009,
- 2010, 2011, 2012 Free Software Foundation, Inc.
+ Copyright 1999-2013 Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -164,6 +163,8 @@ read_function_mappings (const char *filename)
symbol_map[i].is_first = 1;
qsort (symbol_map, symbol_map_count, sizeof (struct function_map), cmp_symbol_map);
+
+ fclose (file);
}
void
diff --git a/gprof/source.c b/gprof/source.c
index 1a445d3315..120e51ab98 100644
--- a/gprof/source.c
+++ b/gprof/source.c
@@ -1,6 +1,6 @@
/* source.c - Keep track of source files.
- Copyright 2000, 2001, 2002, 2004, 2007 Free Software Foundation, Inc.
+ Copyright 2000-2013 Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -259,5 +259,6 @@ annotate_source (Source_File *sf, unsigned int max_width,
}
free (annotation);
+ fclose (ifp);
return ofp;
}