Changeset 87794 in webkit


Ignore:
Timestamp:
Jun 1, 2011 4:40:56 AM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

2011-06-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kent Tamura.

[EFL] Add null checking condition to EditorClientEfl.cpp
https://bugs.webkit.org/show_bug.cgi?id=61846

Add null checking condition for using settings() of frame.

  • WebCoreSupport/EditorClientEfl.cpp: (WebCore::EditorClientEfl::handleEditingKeyboardEvent):
Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r87765 r87794  
     12011-06-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [EFL] Add null checking condition to EditorClientEfl.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=61846
     7
     8        Add null checking condition for using settings() of frame.
     9
     10        * WebCoreSupport/EditorClientEfl.cpp:
     11        (WebCore::EditorClientEfl::handleEditingKeyboardEvent):
     12
    1132011-05-31  Raphael Kubo da Costa  <kubo@profusion.mobi>
    214
  • trunk/Source/WebKit/efl/WebCoreSupport/EditorClientEfl.cpp

    r85864 r87794  
    341341    const PlatformKeyboardEvent* keyEvent = event->keyEvent();
    342342    if (!keyEvent)
     343        return false;
     344
     345    if (!frame->settings())
    343346        return false;
    344347
Note: See TracChangeset for help on using the changeset viewer.