[Webkit-unassigned] [Bug 21476] REGRESSION (r37427): Infinite recursion loading about:blank

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Oct 8 10:48:32 PDT 2008


https://bugs.webkit.org/show_bug.cgi?id=21476





------- Comment #2 from darin at apple.com  2008-10-08 10:48 PDT -------
The fix is this:

- CodeBlock* codeBlock() const { return
this[RegisterFile::CodeBlock].codeBlock(); } 
- ScopeChainNode* scopeChain() const { return
this[RegisterFile::ScopeChain].scopeChain(); } 
+ CodeBlock* codeBlock() const { return
this[RegisterFile::CodeBlock].Register::codeBlock(); } 
+ ScopeChainNode* scopeChain() const { return
this[RegisterFile::ScopeChain].Register::scopeChain(); } 


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list