nread = fread(&hdr, 1, sizeof(hdr), file);
        if (nread != sizeof(hdr)) {
                perror("Unable to read input file");
+               fclose(file);
                return EXIT_FAILURE;
        }
 
-       if (memcmp(hdr.ehdr32.e_ident, ELFMAG, SELFMAG))
+       if (memcmp(hdr.ehdr32.e_ident, ELFMAG, SELFMAG)) {
+               fclose(file);
                die("Input is not an ELF\n");
+       }
 
        switch (hdr.ehdr32.e_ident[EI_CLASS]) {
        case ELFCLASS32:
                        entry = be32toh(hdr.ehdr32.e_entry);
                        break;
                default:
+                       fclose(file);
                        die("Invalid ELF encoding\n");
                }
 
                        entry = be64toh(hdr.ehdr64.e_entry);
                        break;
                default:
+                       fclose(file);
                        die("Invalid ELF encoding\n");
                }
                break;
 
        default:
+               fclose(file);
                die("Invalid ELF class\n");
        }
 
        printf("0x%016" PRIx64 "\n", entry);
+       fclose(file);
        return EXIT_SUCCESS;
 }