Skip to content

Commit

Permalink
Bug 1022773 - Spot fix for hazard reporting stupidity, r=bustage
Browse files Browse the repository at this point in the history
--HG--
extra : rebase_source : e9769d832cdf525115a31b27e39dea13affada99
  • Loading branch information
hotsphink committed Jul 2, 2014
1 parent e6f74ae commit e43bb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/devtools/rootAnalysis/analyzeRoots.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ function locationLine(text)

function printEntryTrace(functionName, entry)
{
var gcPoint = ('gcInfo' in entry) ? entry.gcInfo.ppoint : 0;
var gcPoint = entry.gcInfo ? entry.gcInfo.ppoint : 0;

if (!functionBodies[0].lines)
computePrintedLines(functionName);
Expand Down

0 comments on commit e43bb97

Please sign in to comment.