Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Unified Diff: Source/WebCore/inspector/InspectorIndexedDBAgent.cpp

Issue 10125008: Merge 114373 - Web Inspector: [Chromium] Crash when inspecting empty IndexedDB object store. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/InspectorIndexedDBAgent.cpp
===================================================================
--- Source/WebCore/inspector/InspectorIndexedDBAgent.cpp (revision 114636)
+++ Source/WebCore/inspector/InspectorIndexedDBAgent.cpp (working copy)
@@ -465,7 +465,8 @@
if (!m_frontendProvider->frontend())
return;
- m_idbCursor->postSuccessHandlerCallback();
+ if (m_idbCursor)
+ m_idbCursor->postSuccessHandlerCallback();
m_idbTransaction->didCompleteTaskEvents();
switch (m_cursorType) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698