readprofile: do not close/free just before exiting

function                                             old     new   delta
readprofile_main                                    1784    1762     -22

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2017-08-06 20:39:27 +02:00
parent 277081e0a4
commit 035e71578e
2 changed files with 7 additions and 5 deletions

View File

@ -266,8 +266,10 @@ int readprofile_main(int argc UNUSED_PARAM, char **argv)
printf("%6u %-40s %8.4f\n",
total, "total", total/(double)(fn_add-add0));
fclose(map);
free(buf);
if (ENABLE_FEATURE_CLEAN_UP) {
fclose(map);
free(buf);
}
return EXIT_SUCCESS;
}