diff options
Diffstat (limited to 'net/base/file_stream_posix.cc')
-rw-r--r-- | net/base/file_stream_posix.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net/base/file_stream_posix.cc b/net/base/file_stream_posix.cc index 7bc685c..fbfeb04 100644 --- a/net/base/file_stream_posix.cc +++ b/net/base/file_stream_posix.cc @@ -201,6 +201,8 @@ class FileStream::AsyncContext { int result_; CancelableCallbackTask* message_loop_task_; + bool is_closing_; + DISALLOW_COPY_AND_ASSIGN(AsyncContext); }; @@ -210,9 +212,11 @@ FileStream::AsyncContext::AsyncContext() background_io_completed_callback_( this, &AsyncContext::OnBackgroundIOCompleted), background_io_completed_(true, false), - message_loop_task_(NULL) {} + message_loop_task_(NULL), + is_closing_(false) {} FileStream::AsyncContext::~AsyncContext() { + is_closing_ = true; if (callback_) { // If |callback_| is non-NULL, that implies either the worker thread is // still running the IO task, or the completion callback is queued up on the @@ -272,6 +276,11 @@ void FileStream::AsyncContext::RunAsynchronousCallback() { message_loop_task_->Cancel(); message_loop_task_ = NULL; + if (is_closing_) { + callback_ = NULL; + return; + } + DCHECK(callback_); CompletionCallback* temp = NULL; std::swap(temp, callback_); |