chg: forgot one

This commit is contained in:
iceman1001 2018-05-02 08:13:23 +02:00
commit a8dbbc1609

View file

@ -1781,8 +1781,11 @@ int CmdHF14AMfUDump(const char *Cmd){
PrintAndLogEx(FAILED, "Data exceeded Buffer size!"); PrintAndLogEx(FAILED, "Data exceeded Buffer size!");
bufferSize = sizeof(data); bufferSize = sizeof(data);
} }
GetFromBigBuf(data, bufferSize, startindex);
WaitForResponse(CMD_ACK, NULL); if ( !GetFromBigBuf(data, bufferSize, startindex, NULL, 2500, false) ) {
PrintAndLogEx(WARNING, "command execution time out");
return 1;
}
bool is_partial = (pages == bufferSize/4); bool is_partial = (pages == bufferSize/4);