firmware: reorder open cases slightly

Reorder the open cases slightly to improve readability by having the
information ordered by use.

Change-Id: I6fdc12066a59970d9bc92769d687351f39b6a5c9
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/firmware_handler.cpp b/firmware_handler.cpp
index 5e44397..f074bce 100644
--- a/firmware_handler.cpp
+++ b/firmware_handler.cpp
@@ -355,20 +355,6 @@
     /* We found the transport handler they requested, no surprise since
      * above we verify they selected at least one we wanted.
      */
-    Session* curr;
-    const std::string* active;
-
-    if (path == hashBlobID)
-    {
-        /* 2c) are they opening the /flash/hash ? (to start the process) */
-        curr = &activeHash;
-        active = &activeHashBlobID;
-    }
-    else
-    {
-        curr = &activeImage;
-        active = &activeImageBlobID;
-    }
 
     /* Elsewhere I do this check by checking "if ::ipmi" because that's the
      * only non-external data pathway -- but this is just a more generic
@@ -383,9 +369,11 @@
         }
     }
 
-    /* 2d) are they opening the /flash/tarball ? (to start the UBI process)
-     * 2e) are they opening the /flash/image ? (to start the process)
-     * 2...) are they opening the /flash/... ? (to start the process)
+    /* Do we have a file handler for the type of file they're opening.
+     * Note: This should only fail if something is somehow crazy wrong.
+     * Since the canHandle() said yes, and that's tied into the list of explicit
+     * firmware handers (and file handlers, like this'll know where to write the
+     * tarball, etc).
      */
     auto h = std::find_if(
         handlers.begin(), handlers.end(),
@@ -401,6 +389,21 @@
         return false;
     }
 
+    Session* curr;
+    const std::string* active;
+
+    if (path == hashBlobID)
+    {
+        /* 2c) are they opening the /flash/hash ? (to start the process) */
+        curr = &activeHash;
+        active = &activeHashBlobID;
+    }
+    else
+    {
+        curr = &activeImage;
+        active = &activeImageBlobID;
+    }
+
     curr->flags = flags;
     curr->dataHandler = d->handler;
     curr->imageHandler = h->handler;