| Index: Source/platform/heap/Heap.h
|
| diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
|
| index 6eb0724132dbd0d3dd3861571cf0e185e85ba5b3..84294d77be3c222a23574c6b5de193cf53512cfe 100644
|
| --- a/Source/platform/heap/Heap.h
|
| +++ b/Source/platform/heap/Heap.h
|
| @@ -934,7 +934,8 @@ public:
|
| {
|
| ASSERT(gcInfoIndex >= 1);
|
| ASSERT(gcInfoIndex < gcInfoIndexMax);
|
| - const GCInfo* info = s_gcInfoMap[gcInfoIndex];
|
| + ASSERT(s_gcInfoTable);
|
| + const GCInfo* info = s_gcInfoTable[gcInfoIndex];
|
| ASSERT(info);
|
| return info;
|
| }
|
|
|