| Index: content/browser/download/download_item_impl.cc
|
| diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc
|
| index 972a9570e1b384e7bdeb50f2f215f912dc4b439a..6746584f1d0fa081ae35f8b43efb88b8a5840e38 100644
|
| --- a/content/browser/download/download_item_impl.cc
|
| +++ b/content/browser/download/download_item_impl.cc
|
| @@ -1175,9 +1175,9 @@ void DownloadItemImpl::Start(
|
|
|
| int64_t offset = new_create_info.save_info->offset;
|
| std::unique_ptr<crypto::SecureHash> hash_state =
|
| - base::WrapUnique(new_create_info.save_info->hash_state
|
| - ? new_create_info.save_info->hash_state->Clone()
|
| - : nullptr);
|
| + new_create_info.save_info->hash_state
|
| + ? new_create_info.save_info->hash_state->Clone()
|
| + : nullptr;
|
|
|
| // Interrupted downloads also need a target path.
|
| if (target_path_.empty()) {
|
|
|