Changeset 18802 in webkit


Ignore:
Timestamp:
Jan 12, 2007 4:40:24 AM (17 years ago)
Author:
rwlbuis
Message:

Reviewed by rwlbuis.

  • add missing null check in new fixed table layout code
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r18800 r18802  
     12007-01-12  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by rwlbuis.
     4
     5        - add missing null check in new fixed table layout code
     6
     7        * rendering/FixedTableLayout.cpp:
     8        (WebCore::FixedTableLayout::calcWidthArray):
     9
    1102007-01-12  Lars Knoll <lars@trolltech.com>
    211
  • trunk/WebCore/rendering/FixedTableLayout.cpp

    r18790 r18802  
    144144    if (!section)
    145145        section = m_table->footer();
    146     if (!section->numRows())
     146    if (section && !section->numRows())
    147147        section = m_table->sectionBelow(section, true);
    148148    if (section) {
Note: See TracChangeset for help on using the changeset viewer.