RESOLVED FIXED 48163
Calling FileReader.abort during reading could cause crash
https://bugs.webkit.org/show_bug.cgi?id=48163
Summary Calling FileReader.abort during reading could cause crash
Jian Li
Reported 2010-10-22 16:48:06 PDT
Calling FileReader.abort during reading could cause crash
Attachments
Proposed Patch (6.25 KB, patch)
2010-10-22 16:53 PDT, Jian Li
jianli: commit-queue-
Proposed Patch (5.75 KB, patch)
2010-10-22 16:54 PDT, Jian Li
levin: review+
jianli: commit-queue-
Jian Li
Comment 1 2010-10-22 16:53:10 PDT
Created attachment 71610 [details] Proposed Patch
Jian Li
Comment 2 2010-10-22 16:54:48 PDT
Created attachment 71611 [details] Proposed Patch Removed unneeded file.
David Levin
Comment 3 2010-10-23 11:09:42 PDT
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;
Jian Li
Comment 4 2010-10-25 13:13:01 PDT
Note You need to log in before you can comment on or make changes to this bug.