mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-10-01 01:45:38 -04:00
fw: Don't allow an app size of 0
This commit is contained in:
parent
0331bddc10
commit
9bb47c0bdb
@ -245,7 +245,8 @@ int main()
|
|||||||
putinthex(local_app_size);
|
putinthex(local_app_size);
|
||||||
lf();
|
lf();
|
||||||
|
|
||||||
if (local_app_size > TK1_APP_MAX_SIZE) {
|
if (local_app_size == 0 ||
|
||||||
|
local_app_size > TK1_APP_MAX_SIZE) {
|
||||||
rsp[0] = STATUS_BAD;
|
rsp[0] = STATUS_BAD;
|
||||||
fwreply(hdr, FW_RSP_LOAD_APP, rsp);
|
fwreply(hdr, FW_RSP_LOAD_APP, rsp);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user