Changeset 207712 in webkit


Ignore:
Timestamp:
Oct 22, 2016, 9:26:36 AM (9 years ago)
Author:
Darin Adler
Message:

[Cocoa] REGRESSION (r204508): Crash in init_WebCreateFragment when pasting (seen in multiple apps using legacy WebKit)
https://bugs.webkit.org/show_bug.cgi?id=163839

Reviewed by Dan Bernstein.

  • editing/cocoa/EditorCocoa.mm: Use the appropriate SOFT_LINK macros to find

the WebKitLegacy platform in the correct location for iOS and macOS.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r207711 r207712  
     12016-10-22  Darin Adler  <darin@apple.com>
     2
     3        [Cocoa] REGRESSION (r204508): Crash in init_WebCreateFragment when pasting (seen in multiple apps using legacy WebKit)
     4        https://bugs.webkit.org/show_bug.cgi?id=163839
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * editing/cocoa/EditorCocoa.mm: Use the appropriate SOFT_LINK macros to find
     9        the WebKitLegacy platform in the correct location for iOS and macOS.
     10
    1112016-10-22  Nael Ouedraogo  <nael.ouedraogo@crf.canon.fr>
    212
  • trunk/Source/WebCore/editing/cocoa/EditorCocoa.mm

    r204508 r207712  
    4141#import "htmlediting.h"
    4242
    43 SOFT_LINK_FRAMEWORK(WebKitLegacy)
     43#if PLATFORM(IOS)
     44SOFT_LINK_PRIVATE_FRAMEWORK(WebKitLegacy)
     45#endif
     46
     47#if PLATFORM(MAC)
     48SOFT_LINK_FRAMEWORK_IN_UMBRELLA(WebKit, WebKitLegacy)
     49#endif
    4450
    4551SOFT_LINK(WebKitLegacy, _WebCreateFragment, void, (WebCore::Document& document, NSAttributedString *string, WebCore::FragmentAndResources& result), (document, string, result))
Note: See TracChangeset for help on using the changeset viewer.