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

@ -54,7 +54,7 @@
static byte_t abtRx[MAX_FRAME_LEN];
static size_t szRxBits;
static size_t szRx;
static size_t szRx = sizeof(abtRx);
static byte_t abtRawUid[12];
static byte_t abtAtqa[2];
static byte_t abtSak;