summaryrefslogtreecommitdiff
path: root/chromium/components/update_client/component_patcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/update_client/component_patcher.cc')
-rw-r--r--chromium/components/update_client/component_patcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/components/update_client/component_patcher.cc b/chromium/components/update_client/component_patcher.cc
index e0bf014d389..33d1df803d5 100644
--- a/chromium/components/update_client/component_patcher.cc
+++ b/chromium/components/update_client/component_patcher.cc
@@ -66,7 +66,7 @@ void ComponentPatcher::Start(Callback callback) {
void ComponentPatcher::StartPatching() {
commands_.reset(ReadCommands(input_dir_));
- if (!commands_.get()) {
+ if (!commands_) {
DonePatching(UnpackerError::kDeltaBadCommands, 0);
} else {
next_command_ = commands_->begin();
@@ -90,7 +90,7 @@ void ComponentPatcher::PatchNextFile() {
current_operation_ = CreateDeltaUpdateOp(operation, connector_.get());
}
- if (!current_operation_.get()) {
+ if (!current_operation_) {
DonePatching(UnpackerError::kDeltaUnsupportedCommand, 0);
return;
}