Speculative fix for crash due to string access on multiple threads
Created attachment 207768 [details] Patch
Committed r153499: <http://trac.webkit.org/changeset/153499>
Comment on attachment 207768 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=207768&action=review > Source/WebKit2/UIProcess/Storage/LocalStorageDatabaseTracker.cpp:56 > + RefPtr<StringImpl> copiedLocalStorageDirectory = localStorageDirectory.impl() ? localStorageDirectory.impl()->isolatedCopy() : nullptr; Is this really better than: RefPtr<StringImpl> copiedLocalStorageDirectory = localStorageDirectory.isolatedCopy().impl(); ? Wish I had thought of that before you landed it.