Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4463 from brianrob/rc2_perfmap
Browse files Browse the repository at this point in the history
Fix empty perf map files generated by crossgen
  • Loading branch information
jkotas committed Apr 21, 2016
2 parents f6a501e + 1368248 commit f21eb3c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/vm/perfmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ PerfMap::PerfMap(int pid)
PerfMap::PerfMap()
{
LIMITED_METHOD_CONTRACT;

// Initialize with no failures.
m_ErrorEncountered = false;
}

// Clean-up resources.
Expand Down

0 comments on commit f21eb3c

Please sign in to comment.