Changeset 84801 in webkit


Ignore:
Timestamp:
Apr 25, 2011 2:21:29 PM (13 years ago)
Author:
jamesr@google.com
Message:

2011-04-25 James Robinson <jamesr@chromium.org>

Reviewed by Adam Barth.

Remove bad use of OwnPtr::set() in IconDatabase.cpp
https://bugs.webkit.org/show_bug.cgi?id=59344

Needed for strict OwnPtr compliance.

  • loader/icon/IconDatabase.cpp: (WebCore::readySQLiteStatement):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r84798 r84801  
     12011-04-25  James Robinson  <jamesr@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Remove bad use of OwnPtr::set() in IconDatabase.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=59344
     7
     8        Needed for strict OwnPtr compliance.
     9
     10        * loader/icon/IconDatabase.cpp:
     11        (WebCore::readySQLiteStatement):
     12
    1132011-04-25  Adam Barth  <abarth@webkit.org>
    214
  • trunk/Source/WebCore/loader/icon/IconDatabase.cpp

    r84538 r84801  
    18521852        if (statement->isExpired())
    18531853            LOG(IconDatabase, "SQLiteStatement associated with %s is expired", str.ascii().data());
    1854         statement.set(0);
     1854        statement.clear();
    18551855    }
    18561856    if (!statement) {
Note: See TracChangeset for help on using the changeset viewer.