Changeset 18692 in webkit


Ignore:
Timestamp:
Jan 8, 2007 6:01:26 PM (17 years ago)
Author:
zbujtas
Message:

2007-01-08 shkeller <shaun.keller@nokia.com>

Reviewed by Zalan Bujtas (zbujtas@gmail.com).
DESC: XMLHttpRequest object not gcprotected when !USE_CONSERVATIVE_GC
http://bugs.webkit.org/show_bug.cgi?id=12157

WARNING: NO TEST CASES ADDED OR CHANGED

  • khtml/ecma/xmlhttprequest.cpp: (KJS::XMLHttpRequest::send): (KJS::XMLHttpRequest::abort): (KJS::XMLHttpRequest::slotFinished):
Location:
S60/trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r18194 r18692  
     12007-01-08  shkeller  <shaun.keller@nokia.com>
     2
     3        Reviewed by Zalan Bujtas (zbujtas@gmail.com).
     4        DESC: XMLHttpRequest object not gcprotected when !USE_CONSERVATIVE_GC
     5        http://bugs.webkit.org/show_bug.cgi?id=12157
     6
     7        WARNING: NO TEST CASES ADDED OR CHANGED
     8
     9        * khtml/ecma/xmlhttprequest.cpp:
     10        (KJS::XMLHttpRequest::send):
     11        (KJS::XMLHttpRequest::abort):
     12        (KJS::XMLHttpRequest::slotFinished):
     13
    1142006-12-11  rathnasa  <sornalatha.rathnasamy@nokia.com>
    215
  • S60/trunk/WebCore/khtml/ecma/xmlhttprequest.cpp

    r17938 r18692  
    368368    InterpreterLock lock;
    369369    gcProtect(this);
     370#if !USE_CONSERVATIVE_GC
     371    ref();
     372#endif
    370373  }
    371374
     
    405408    InterpreterLock lock;
    406409    gcUnprotect(this);
     410#if !USE_CONSERVATIVE_GC
     411    deref();
     412#endif
    407413  }
    408414}
     
    552558  InterpreterLock lock;
    553559  gcUnprotect(this);
     560#if !USE_CONSERVATIVE_GC
     561  deref();
     562#endif
    554563}
    555564
Note: See TracChangeset for help on using the changeset viewer.