From d9097b0b398d34090f9cae92c051edf2edba73ac Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Tue, 16 Mar 2010 18:24:24 +0000 Subject: 2010-03-16 Segher Boessenkool * gmon_io.c (gmon_out_read): Close file when done. --- gprof/gmon_io.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gprof/gmon_io.c') diff --git a/gprof/gmon_io.c b/gprof/gmon_io.c index f48d3bc..1b046d4 100644 --- a/gprof/gmon_io.c +++ b/gprof/gmon_io.c @@ -573,6 +573,9 @@ gmon_out_read (const char *filename) done (1); } + if (ifp != stdin) + fclose (ifp); + if (output_style & STYLE_GMON_INFO) { printf (_("File `%s' (version %d) contains:\n"), -- cgit v1.1