Changeset 48593 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 21, 2009, 1:37:16 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r48590 r48593 1 2009-09-21 Jedrzej Nowacki <[email protected]> 2 3 Reviewed by Eric Seidel. 4 5 [Fix] SourceCode's uninitialized member 6 7 Potential source of crashes and bugs was fixed. Default constructor 8 didn't initialized m_provider member. 9 10 https://bugs.webkit.org/show_bug.cgi?id=29364 11 12 * parser/SourceCode.h: 13 (JSC::SourceCode::SourceCode): 14 1 15 2009-09-21 Oliver Hunt <[email protected]> 2 16 -
trunk/JavaScriptCore/parser/SourceCode.h
r44224 r48593 38 38 public: 39 39 SourceCode() 40 : m_startChar(0) 40 : m_provider(0) 41 , m_startChar(0) 41 42 , m_endChar(0) 42 43 , m_firstLine(0)
Note:
See TracChangeset
for help on using the changeset viewer.