Skip to content
Snippets Groups Projects
Commit a8aca430 authored by Lioncash's avatar Lioncash
Browse files

crypto/key_manager: Remove unused variable in GetTicketblob()

parent e88cdcc9
No related branches found
No related tags found
No related merge requests found
......@@ -246,7 +246,6 @@ std::vector<TicketRaw> GetTicketblob(const FileUtil::IOFile& ticket_save) {
}
std::vector<TicketRaw> out;
u32 magic{};
for (std::size_t offset = 0; offset + 0x4 < buffer.size(); ++offset) {
if (buffer[offset] == 0x4 && buffer[offset + 1] == 0x0 && buffer[offset + 2] == 0x1 &&
buffer[offset + 3] == 0x0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment