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

Unified Diff: Source/WebKit/chromium/src/WorkerFileSystemCallbacksBridge.cpp

Issue 10748005: Merge 121160 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 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/WebKit/chromium/src/WorkerFileSystemCallbacksBridge.cpp
===================================================================
--- Source/WebKit/chromium/src/WorkerFileSystemCallbacksBridge.cpp (revision 122120)
+++ Source/WebKit/chromium/src/WorkerFileSystemCallbacksBridge.cpp (working copy)
@@ -187,8 +187,10 @@
m_callbacksOnWorkerThread = 0;
if (m_workerContextObserver) {
- delete m_workerContextObserver;
+ WorkerFileSystemContextObserver* observer = m_workerContextObserver;
m_workerContextObserver = 0;
+ // The next line may delete this.
+ delete observer;
}
}
« 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