Changeset 191642 in webkit


Ignore:
Timestamp:
Oct 27, 2015, 2:47:13 PM (10 years ago)
Author:
ap@apple.com
Message:

WebKitTestRunner leaks in generateWhitelist()
https://bugs.webkit.org/show_bug.cgi?id=150563

Reviewed by Andreas Kling.

  • WebKitTestRunner/mac/TestControllerMac.mm:

(WTR::generateWhitelist):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r191630 r191642  
     12015-10-27  Alexey Proskuryakov  <ap@apple.com>
     2
     3        WebKitTestRunner leaks in generateWhitelist()
     4        https://bugs.webkit.org/show_bug.cgi?id=150563
     5
     6        Reviewed by Andreas Kling.
     7
     8        * WebKitTestRunner/mac/TestControllerMac.mm:
     9        (WTR::generateWhitelist):
     10
    1112015-10-27  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Tools/WebKitTestRunner/mac/TestControllerMac.mm

    r191063 r191642  
    278278
    279279    for (NSString *hiddenFontFamily in systemHiddenFontFamilySet())
    280         WKArrayAppendItem(result, WKStringCreateWithUTF8CString([hiddenFontFamily UTF8String]));
     280        WKArrayAppendItem(result, adoptWK(WKStringCreateWithUTF8CString([hiddenFontFamily UTF8String])).get());
    281281
    282282    return adoptWK(result);
Note: See TracChangeset for help on using the changeset viewer.