Changeset 52911 in webkit


Ignore:
Timestamp:
Jan 7, 2010 2:19:38 AM (14 years ago)
Author:
zoltan@webkit.org
Message:

2010-01-07 Zoltan Horvath <zoltan@webkit.org>

Reviewed by Holger Freyther.

[Qt] Build fix when FAST_MALLOC_MATCH_VALIDATION=1
https://bugs.webkit.org/show_bug.cgi?id=33312

Remove pByte (committed in r42344 from #20422), because pByte doesn't
exist and it is unnecessary.

  • wtf/FastMalloc.cpp: (WTF::TCMallocStats::realloc):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52859 r52911  
     12010-01-07  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Reviewed by Holger Freyther.
     4
     5        [Qt] Build fix when FAST_MALLOC_MATCH_VALIDATION=1
     6        https://bugs.webkit.org/show_bug.cgi?id=33312
     7
     8        Remove pByte (committed in r42344 from #20422), because pByte doesn't
     9        exist and it is unnecessary.
     10
     11        * wtf/FastMalloc.cpp:
     12        (WTF::TCMallocStats::realloc):
     13
    1142010-01-06  Gavin Barraclough  <barraclough@apple.com>
    215
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r52791 r52911  
    37963796  } else {
    37973797#if ENABLE(FAST_MALLOC_MATCH_VALIDATION)
    3798     old_ptr = pByte + sizeof(AllocAlignmentInteger); // Set old_ptr back to the user pointer.
     3798    old_ptr += sizeof(AllocAlignmentInteger); // Set old_ptr back to the user pointer.
    37993799#endif
    38003800    return old_ptr;
Note: See TracChangeset for help on using the changeset viewer.