Changeset 52827 in webkit


Ignore:
Timestamp:
Jan 5, 2010 3:06:57 PM (14 years ago)
Author:
Adam Roben
Message:

Remove dead code in WebViewWndProc

Fixes <http://webkit.org/b/33218>.

Reviewed by Darin Adler.

  • WebView.cpp:

(WebView::WebViewWndProc): Removed a redundant isBeingDestroyed check.
We bail out much earlier in this function if isBeingDestroyed is true.

Location:
trunk/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/win/ChangeLog

    r52781 r52827  
     12010-01-05  Adam Roben  <aroben@apple.com>
     2
     3        Remove dead code in WebViewWndProc
     4
     5        Fixes <http://webkit.org/b/33218>.
     6
     7        Reviewed by Darin Adler.
     8
     9        * WebView.cpp:
     10        (WebView::WebViewWndProc): Removed a redundant isBeingDestroyed check.
     11        We bail out much earlier in this function if isBeingDestroyed is true.
     12
    1132010-01-04  Jon Honeycutt  <jhoneycutt@apple.com>
    214
  • trunk/WebKit/win/WebView.cpp

    r52767 r52827  
    19551955        // FIXME: We need to check WM_UNICHAR to support supplementary characters (that don't fit in 16 bits).
    19561956        case WM_SIZE:
    1957             if (webView->isBeingDestroyed())
    1958                 // If someone has sent us this message while we're being destroyed, we should bail out so we don't crash.
    1959                 break;
    1960 
    19611957            if (lParam != 0) {
    19621958                webView->deleteBackingStore();
Note: See TracChangeset for help on using the changeset viewer.