diff options
Diffstat (limited to 'base/file_util_proxy.cc')
-rw-r--r-- | base/file_util_proxy.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/file_util_proxy.cc b/base/file_util_proxy.cc index 9b51d34..0873c9c 100644 --- a/base/file_util_proxy.cc +++ b/base/file_util_proxy.cc @@ -112,7 +112,8 @@ class CreateOrOpenHelper { ~CreateOrOpenHelper() { if (file_handle_ != kInvalidPlatformFileValue) { message_loop_proxy_->PostTask( - FROM_HERE, base::Bind(close_task_, file_handle_)); + FROM_HERE, + base::Bind(base::IgnoreResult(close_task_), file_handle_)); } } |