1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-11-22 11:56:42 +00:00

fix a bug that basically has no effect

thanks shchmue for pointing that out :smug:
This commit is contained in:
Such Meme, Many Skill 2020-05-09 00:26:02 +02:00
parent 43617ef511
commit 97810335ed

View file

@ -108,7 +108,7 @@ static inline int _emmc_xts(u32 ks1, u32 ks2, u32 enc, u8 *tweak, bool regen_twe
pdst += 0x10; pdst += 0x10;
} }
se_aes_crypt_ecb(ks2, enc, dst, secsize, src, secsize); se_aes_crypt_ecb(ks2, enc, dst, secsize, dst, secsize);
pdst = (u8 *)dst; pdst = (u8 *)dst;