Changeset 225240 in webkit


Ignore:
Timestamp:
Nov 28, 2017 2:39:04 PM (6 years ago)
Author:
ap@apple.com
Message:

Stop silencing leaks in TextCodecICU::registerCodecs, as the problem was fixed a while ago.
https://bugs.webkit.org/show_bug.cgi?id=118505

Reviewed by Joseph Pecoraro.

  • Scripts/valgrind/suppressions.txt:
  • Scripts/webkitpy/port/leakdetector.py:

(LeakDetector._callstacks_to_exclude_from_leaks):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r225236 r225240  
     12017-11-28  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Stop silencing leaks in TextCodecICU::registerCodecs, as the problem was fixed a while ago.
     4        https://bugs.webkit.org/show_bug.cgi?id=118505
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * Scripts/valgrind/suppressions.txt:
     9        * Scripts/webkitpy/port/leakdetector.py:
     10        (LeakDetector._callstacks_to_exclude_from_leaks):
     11
    1122017-11-28  Ms2ger  <Ms2ger@igalia.com>
    213
  • trunk/Tools/Scripts/valgrind/suppressions.txt

    r154387 r225240  
    595595
    596596{
    597    # TextCodecICU::registerCodecs is leaking https://bugs.webkit.org/show_bug.cgi?id=118505
    598    WebCore::TextCodec::registerCodecs()
    599597   Memcheck:Leak
    600598   fun:malloc
  • trunk/Tools/Scripts/webkitpy/port/leakdetector.py

    r197262 r225240  
    5555    def _callstacks_to_exclude_from_leaks(self):
    5656        callstacks = [
    57             'TextCodecICU::registerCodecs',  # https://bugs.webkit.org/show_bug.cgi?id=118505
     57            # List substrings here, e.g.
     58            # 'TextCodecICU::registerCodecs',  # https://bugs.webkit.org/show_bug.cgi?id=118505
    5859        ]
    59         if self._port.operating_system == 'mac' and self._port.is_mavericks():
    60             callstacks += [
    61                 'AVAssetResourceLoader _poseAuthenticationChallengeWithKey:data:requestDictionary:fallbackHandler:',  # <rdar://problem/19699887> leak in AVFoundation
    62             ]
    6360        return callstacks
    6461
Note: See TracChangeset for help on using the changeset viewer.