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
|
|
@ -74,7 +74,7 @@ sam_connection (nfc_device_t * pnd, int mode)
|
|||
size_t szCmd = 0;
|
||||
|
||||
byte_t abtRx[MAX_FRAME_LEN];
|
||||
size_t szRx;
|
||||
size_t szRx = sizeof(abtRx);
|
||||
|
||||
pncmd_sam_config[2] = mode;
|
||||
|
||||
|
|
@ -210,7 +210,7 @@ main (int argc, const char *argv[])
|
|||
case DUAL_CARD_MODE:
|
||||
{
|
||||
byte_t abtRx[MAX_FRAME_LEN];
|
||||
size_t szRx;
|
||||
size_t szRx = sizeof(abtRx);
|
||||
|
||||
nfc_target_t nt = {
|
||||
.nm = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue