Always set the size of Rx buffer (prevent from overflow)
This commit is contained in:
parent
5af845cdfc
commit
4b6ba0aa3c
10 changed files with 12 additions and 12 deletions
|
|
@ -56,7 +56,7 @@
|
|||
#define SAK_ISO14443_4_COMPLIANT 0x20
|
||||
|
||||
static byte_t abtRx[MAX_FRAME_LEN];
|
||||
static size_t szRx;
|
||||
static size_t szRx = sizeof(abtRx);
|
||||
static nfc_device_t *pnd;
|
||||
static bool quiet_output = false;
|
||||
static bool init_mfc_auth = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue