Ignore:
Timestamp:
Dec 9, 2011, 6:13:02 PM (14 years ago)
Author:
[email protected]
Message:

REGRESSION(r101863-r102042): Assertion hit: m_verifier.isSafeToUse() in RefCountedBase::ref in FunctionCodeBlock
https://bugs.webkit.org/show_bug.cgi?id=73886

Reviewed by Darin Adler.

  • runtime/SymbolTable.h:

(JSC::SharedSymbolTable::SharedSymbolTable): Added deprecatedTurnOffVerifier for
another JavaScriptObject, since JavaScriptCore objects allow use on multiple threads.
Bug 58091 is about changing these deprecated calls to something else but that something
else will still need to be in all of these places.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/SymbolTable.h

    r100417 r102508  
    126126        static PassRefPtr<SharedSymbolTable> create() { return adoptRef(new SharedSymbolTable); }
    127127    private:
    128         SharedSymbolTable() { }
     128        SharedSymbolTable() { deprecatedTurnOffVerifier(); }
    129129    };
    130130   
Note: See TracChangeset for help on using the changeset viewer.