Changeset 15234 in webkit for trunk/JavaScriptCore/API/JSObjectRef.cpp
- Timestamp:
- Jul 8, 2006, 10:53:08 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.cpp
r15233 r15234 89 89 if (exception) 90 90 *exception = Error::create(exec, SyntaxError, errMsg, errLine, sid, jsSourceURL); 91 return NULL;91 return 0; 92 92 } 93 93 … … 230 230 *exception = exec->exception(); 231 231 exec->clearException(); 232 result = NULL;232 result = 0; 233 233 } 234 234 return result; … … 255 255 if (exception) 256 256 *exception = exec->exception(); 257 result = NULL;258 257 exec->clearException(); 258 result = 0; 259 259 } 260 260 return result;
Note:
See TracChangeset
for help on using the changeset viewer.