Chromium Code Reviews| Index: Source/platform/heap/Heap.h |
| diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h |
| index 6eb0724132dbd0d3dd3861571cf0e185e85ba5b3..3b1b96eef633633de80dc8183f7c7e4ebabf7e49 100644 |
| --- a/Source/platform/heap/Heap.h |
| +++ b/Source/platform/heap/Heap.h |
| @@ -934,7 +934,7 @@ public: |
| { |
| ASSERT(gcInfoIndex >= 1); |
| ASSERT(gcInfoIndex < gcInfoIndexMax); |
| - const GCInfo* info = s_gcInfoMap[gcInfoIndex]; |
| + const GCInfo* info = s_gcInfoTable[gcInfoIndex]; |
|
haraken
2015/01/06 08:08:04
Add ASSERT(s_gcInfoTable)
sof
2015/01/06 08:19:18
Done.
|
| ASSERT(info); |
| return info; |
| } |