Suppress uninitialized value warnings. am: 6e4f345e8a

Original change: https://android-review.googlesource.com/c/platform/system/update_engine/+/2365953

Change-Id: I4b5ef6b58229f0a43db7f46de14e877957d52ac2
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/aosp/update_attempter_android.cc b/aosp/update_attempter_android.cc
index eda82e2..617edab 100644
--- a/aosp/update_attempter_android.cc
+++ b/aosp/update_attempter_android.cc
@@ -324,6 +324,8 @@
   } else {
 #ifdef _UE_SIDELOAD
     LOG(FATAL) << "Unsupported sideload URI: " << payload_url;
+    return false;  // NOLINT, unreached but analyzer might not know.
+                   // Suppress warnings about null 'fetcher' after this.
 #else
     LibcurlHttpFetcher* libcurl_fetcher = new LibcurlHttpFetcher(hardware_);
     if (!headers[kPayloadDownloadRetry].empty()) {