Changeset 259588 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Apr 6, 2020, 1:07:45 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r259583 r259588 3002 3002 // should probably have some other guards in place to prevent us from even getting 3003 3003 // to this point. 3004 if (doubleResult > std::numeric_limits<size_t>::max())3004 if (doubleResult >= maxPlusOne<size_t>) 3005 3005 return 0; 3006 3006
Note:
See TracChangeset
for help on using the changeset viewer.