summaryrefslogtreecommitdiff
path: root/patchoat/patchoat.cc
diff options
context:
space:
mode:
Diffstat (limited to 'patchoat/patchoat.cc')
-rw-r--r--patchoat/patchoat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchoat/patchoat.cc b/patchoat/patchoat.cc
index b9a9a69ab59..dc9d990e299 100644
--- a/patchoat/patchoat.cc
+++ b/patchoat/patchoat.cc
@@ -700,6 +700,7 @@ bool PatchOat::Verify(const std::string& image_location,
}
bool PatchOat::WriteImage(File* out) {
+ CHECK(out != nullptr);
TimingLogger::ScopedTiming t("Writing image File", timings_);
std::string error_msg;
@@ -709,7 +710,6 @@ bool PatchOat::WriteImage(File* out) {
true /* read_only_mode */, &error_msg);
CHECK(image_ != nullptr);
- CHECK(out != nullptr);
size_t expect = image_->Size();
if (out->WriteFully(reinterpret_cast<char*>(image_->Begin()), expect) &&
out->SetLength(expect) == 0) {