Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix signature and magic strings in dex module
Several bytestring values in the dex module were not set properly, and were cut short due to the presence of a nul byte. This happened on: - all the dex.DEX_FILE_MAGIC_* constants, which were cut short by one byte (the last one is the nul byte). - the magic and signature field in the "header" object of the module. For all of those, the size is fixed and known, so use the right length and do not cut it short if a nul byte is present.
- Loading branch information