Merge pull request #296 from cyberbobs/master

Fix nfc_initiator_poll_target without tag on PN532
This commit is contained in:
Romuald Conty 2015-05-26 11:17:28 +02:00
commit fecc19de4c

View file

@ -1226,6 +1226,9 @@ pn53x_initiator_poll_target(struct nfc_device *pnd,
if ((res = pn53x_InAutoPoll(pnd, apttTargetTypes, szTargetTypes, uiPollNr, uiPeriod, ntTargets, 0)) < 0)
return res;
switch (res) {
case 0:
return pnd->last_error = NFC_SUCCESS;
break;
case 1:
*pnt = ntTargets[0];
if (pn53x_current_target_new(pnd, pnt) == NULL) {