Changeset 20738 in webkit for trunk/JavaScriptCore
- Timestamp:
- Apr 5, 2007, 3:52:38 PM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r20737 r20738 1 2007-04-05 Krzysztof Kowalczyk <[email protected]> 2 3 Reviewed by darin. 4 5 Coverity fix. Coverity says: 6 "Event check_after_deref: Pointer "dateString" dereferenced before NULL check" 7 8 * kjs/date_object.cpp: 9 (KJS::parseDate): 10 1 11 2007-04-05 Krzysztof Kowalczyk <[email protected]> 2 12 -
trunk/JavaScriptCore/kjs/date_object.cpp
r20310 r20738 816 816 817 817 // Missing delimiter between month and day (like "January29")? 818 if (month == -1 && dateString &&wordStart != dateString)818 if (month == -1 && wordStart != dateString) 819 819 month = findMonth(wordStart); 820 820
Note:
See TracChangeset
for help on using the changeset viewer.