Ignore:
Timestamp:
Aug 11, 2009, 11:50:22 PM (16 years ago)
Author:
[email protected]
Message:

Minor style fixes in previous patch and changelog correction.

Reviewed by Mark Rowe

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/UString.h

    r47092 r47093  
    9292                // Guard against integer overflow
    9393                if (size < (std::numeric_limits<size_t>::max() / sizeof(UChar))) {
    94                     void * buf = 0;
     94                    void* buf = 0;
    9595                    if (tryFastMalloc(size * sizeof(UChar)).getValue(buf))
    9696                        return adoptRef(new BaseString(static_cast<UChar*>(buf), 0, size));
Note: See TracChangeset for help on using the changeset viewer.