Changeset 261935 in webkit


Ignore:
Timestamp:
May 20, 2020 11:37:47 AM (4 years ago)
Author:
Kate Cheney
Message:

REGRESSION (r261892) [ Mac Debug ] 4 API tests failing related to ResourceLoadStatistics
https://bugs.webkit.org/show_bug.cgi?id=212153
<rdar://problem/63452541>

Reviewed by Sihui Liu.

Accidentally deleted necessary reset() call for a SQLite statement
when converting stored statements to SQLiteStatementAutoResetScope in
https://trac.webkit.org/changeset/261892/webkit.

This statement is used in a loop with multiple bind() calls so it must be reset.

  • NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:

(WebKit::ResourceLoadStatisticsDatabaseStore::checkForMissingTablesInSchema):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r261928 r261935  
     12020-05-20  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        REGRESSION (r261892) [ Mac Debug ] 4 API tests failing related to ResourceLoadStatistics
     4        https://bugs.webkit.org/show_bug.cgi?id=212153
     5        <rdar://problem/63452541>
     6
     7        Reviewed by Sihui Liu.
     8
     9        Accidentally deleted necessary reset() call for a SQLite statement
     10        when converting stored statements to SQLiteStatementAutoResetScope in
     11        https://trac.webkit.org/changeset/261892/webkit.
     12
     13        This statement is used in a loop with multiple bind() calls so it must be reset.
     14
     15        * NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
     16        (WebKit::ResourceLoadStatisticsDatabaseStore::checkForMissingTablesInSchema):
     17
    1182020-05-20  Eric Carlson  <eric.carlson@apple.com>
    219
  • trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp

    r261892 r261935  
    353353            missingTables.append(String(table));
    354354        }
     355        statement.reset();
    355356    }
    356357    if (missingTables.isEmpty())
Note: See TracChangeset for help on using the changeset viewer.