Browse Source
Merge pull request #1836 from lioncash/unused
crypto/key_manager: Remove unused variable in GetTicketblob()
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
src/core/crypto/key_manager.cpp
|
|
|
@ -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) { |
|
|
|
|