Always set the size of Rx buffer (prevent from overflow)

This commit is contained in:
Romuald Conty 2011-03-02 15:02:30 +00:00
parent 5af845cdfc
commit 4b6ba0aa3c
10 changed files with 12 additions and 12 deletions

View file

@ -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;