Changeset 167544 in webkit for trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
- Timestamp:
- Apr 19, 2014, 1:36:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r167336 r167544 972 972 if (static_cast<int32_t>(left->length() + right->length()) < 0) { 973 973 throwOutOfMemoryError(exec); 974 return 0;974 return nullptr; 975 975 } 976 976 … … 988 988 if (length.hasOverflowed()) { 989 989 throwOutOfMemoryError(exec); 990 return 0;990 return nullptr; 991 991 } 992 992
Note:
See TracChangeset
for help on using the changeset viewer.