mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 01:18:28 +00:00
chore(core): catch possible EOFError when parsing translations header
[no changelog]
This commit is contained in:
parent
f234d19992
commit
5ce5d47171
@ -70,7 +70,7 @@ async def do_change_language(
|
||||
header_data = await _get_data_chunk(data_length, 0)
|
||||
try:
|
||||
header = translations.TranslationsHeader(header_data)
|
||||
except ValueError:
|
||||
except (ValueError, EOFError):
|
||||
raise DataError("Invalid translations data")
|
||||
|
||||
# Verifying header information
|
||||
|
Loading…
Reference in New Issue
Block a user