Title: [139987] trunk/Source/WebCore
Revision
139987
Author
[email protected]
Date
2013-01-17 10:28:20 -0800 (Thu, 17 Jan 2013)

Log Message

Unreviewed, rolling out r139929.
http://trac.webkit.org/changeset/139929
https://bugs.webkit.org/show_bug.cgi?id=107141

Speculative fix didn't work (Requested by jsbell on #webkit).

Patch by Sheriff Bot <[email protected]> on 2013-01-17

* Modules/indexeddb/IDBObjectStore.cpp:
(WebCore::IDBObjectStore::createIndex):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139986 => 139987)


--- trunk/Source/WebCore/ChangeLog	2013-01-17 18:22:45 UTC (rev 139986)
+++ trunk/Source/WebCore/ChangeLog	2013-01-17 18:28:20 UTC (rev 139987)
@@ -1,3 +1,14 @@
+2013-01-17  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r139929.
+        http://trac.webkit.org/changeset/139929
+        https://bugs.webkit.org/show_bug.cgi?id=107141
+
+        Speculative fix didn't work (Requested by jsbell on #webkit).
+
+        * Modules/indexeddb/IDBObjectStore.cpp:
+        (WebCore::IDBObjectStore::createIndex):
+
 2013-01-16  Alexey Proskuryakov  <[email protected]>
 
         Don't use NSApplication run loop in NetworkProcess

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp (139986 => 139987)


--- trunk/Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp	2013-01-17 18:22:45 UTC (rev 139986)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp	2013-01-17 18:28:20 UTC (rev 139987)
@@ -356,12 +356,6 @@
 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ScriptExecutionContext* context, const String& name, const IDBKeyPath& keyPath, bool unique, bool multiEntry, ExceptionCode& ec)
 {
     IDB_TRACE("IDBObjectStore::createIndex");
-    // FIXME: Temporary code to determine if null contexts are plausible during frame destruction.
-    // https://bugs.webkit.org/show_bug.cgi?id=107050
-    ASSERT(context);
-    if (!context)
-        return 0;
-
     if (!m_transaction->isVersionChange() || m_deleted) {
         ec = IDBDatabaseException::InvalidStateError;
         return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to