Ignore:
Timestamp:
Jul 29, 2010, 6:27:24 PM (15 years ago)
Author:
[email protected]
Message:

2010-07-29 Sheriff Bot <[email protected]>

Unreviewed, rolling out r64302.
http://trac.webkit.org/changeset/64302
https://bugs.webkit.org/show_bug.cgi?id=43223

Assertion is bogus (Requested by olliej on #webkit).

  • assembler/ARMAssembler.cpp: (JSC::ARMAssembler::executableCopy):
  • assembler/AssemblerBuffer.h: (JSC::AssemblerBuffer::putShortUnchecked): (JSC::AssemblerBuffer::putIntUnchecked): (JSC::AssemblerBuffer::putInt64Unchecked):
  • jit/JITStubs.cpp:
  • pcre/pcre_compile.cpp: (jsRegExpCompile):
  • wtf/FastMalloc.cpp: (WTF::PageHeapAllocator::New): (WTF::TCMalloc_Central_FreeList::Populate):
  • wtf/MD5.cpp: (WTF::reverseBytes): (WTF::MD5::addBytes): (WTF::MD5::checksum):
  • wtf/StdLibExtras.h:
  • wtf/Vector.h: (WTF::VectorBuffer::inlineBuffer):
  • wtf/qt/StringQt.cpp: (WebCore::String::String):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/qt/StringQt.cpp

    r64302 r64327  
    2626#include "config.h"
    2727
    28 #include <wtf/StdLibExtras.h>
    2928#include <wtf/text/WTFString.h>
    3029
     
    3837    if (qstr.isNull())
    3938        return;
    40     m_impl = StringImpl::create(reinterpret_cast_ptr<const UChar*>(qstr.constData()), qstr.length());
     39    m_impl = StringImpl::create(reinterpret_cast<const UChar*>(qstr.constData()), qstr.length());
    4140}
    4241
     
    4544    if (!ref.string())
    4645        return;
    47     m_impl = StringImpl::create(reinterpret_cast_ptr<const UChar*>(ref.unicode()), ref.length());
     46    m_impl = StringImpl::create(reinterpret_cast<const UChar*>(ref.unicode()), ref.length());
    4847}
    4948
Note: See TracChangeset for help on using the changeset viewer.