Changeset 19241 for S60/trunk/WebCore

Show
Ignore:
Timestamp:
01/29/07 18:11:36 (2 years ago)
Author:
zbujtas
Message:

2007-01-29 bujtas <zbujtas@gmail.com>

Reviewed by zalan bujtas
DESC:
http://bugs.webkit.org/show_bug.cgi?id=12422
jscript->schedule action->turn off jscript->action timeouts->crash. fix: check if the proxy is available in ScheduledAction::execute()

  • khtml/ecma/kjs_window.cpp: (ScheduledAction::execute):
Location:
S60/trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r19198 r19241  
     12007-01-29  bujtas  <zbujtas@gmail.com> 
     2 
     3        Reviewed by zalan bujtas 
     4        DESC:  
     5        http://bugs.webkit.org/show_bug.cgi?id=12422 
     6        jscript->schedule action->turn off jscript->action timeouts->crash. fix: check if the proxy is available in ScheduledAction::execute() 
     7 
     8        * khtml/ecma/kjs_window.cpp: 
     9        (ScheduledAction::execute): 
     10 
    1112007-01-26  bujtas  <zbujtas@gmail.com> 
    212 
  • S60/trunk/WebCore/khtml/ecma/kjs_window.cpp

    r18056 r19241  
    21642164void ScheduledAction::execute(Window *window) 
    21652165{ 
     2166  if (!KJSProxy::proxy(window->m_part)) 
     2167    return; 
     2168 
    21662169  ScriptInterpreter *interpreter = static_cast<ScriptInterpreter *>(KJSProxy::proxy(window->m_part)->interpreter()); 
    21672170