Calling FileReader.abort during reading could cause crash
Created attachment 71610 [details] Proposed Patch
Created attachment 71611 [details] Proposed Patch Removed unneeded file.
Comment on attachment 71611 [details] Proposed Patch View in context: https://bugs.webkit.org/attachment.cgi?id=71611&action=review > WebCore/fileapi/FileReader.cpp:266 > + if (m_state != Aborting) Seems like "fail fast" would be better. if (m_state == Aborting) return;
Committed as http://trac.webkit.org/changeset/70484.