Changeset 31292 in webkit


Ignore:
Timestamp:
Mar 25, 2008, 3:17:45 PM (17 years ago)
Author:
mitz@apple.com
Message:

Reviewed by Darin Adler.

  • WebView/WebHTMLView.mm: (-[WebHTMLView layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:]): Added null check.
Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r31291 r31292  
     12008-03-25  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=17933
     6          Reopen All Windows From Last Session causes crash
     7
     8        * WebView/WebHTMLView.mm:
     9        (-[WebHTMLView layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:]): Added null
     10        check.
     11
    1122008-03-25  Brady Eidson  <beidson@apple.com>
    213
  • trunk/WebKit/mac/WebView/WebHTMLView.mm

    r31274 r31292  
    27032703
    27042704    Frame* coreFrame = core([self _frame]);
     2705    if (!coreFrame) {
     2706        _private->needsLayout = NO;
     2707        return;
     2708    }
     2709
    27052710    if (minPageWidth > 0.0)
    27062711        coreFrame->forceLayoutWithPageWidthRange(minPageWidth, maxPageWidth, adjustViewSize);
Note: See TracChangeset for help on using the changeset viewer.