Fix missing return in failure case.

Bug: 19517541
Change-Id: I4b21835ee8f2e604152a6436693461cc24ddb745
diff --git a/src/elfxx.h b/src/elfxx.h
index 0166d79..e0343b4 100644
--- a/src/elfxx.h
+++ b/src/elfxx.h
@@ -136,6 +136,7 @@
   ei->valid = elf_w (valid_object_mapped) (ei);
   if (!ei->valid) {
     munmap (ei->u.mapped.image, ei->u.mapped.size);
+    return false;
   }
 
   ei->mapped = true;