mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
fix: memory issue, took all bigbuff
This commit is contained in:
parent
695d4cbb51
commit
2017f321b7
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ static void SMART_CARD_ActivateInterface( void ) {
|
||||||
static bool SMART_CARD_EstablishCommunications( void ) {
|
static bool SMART_CARD_EstablishCommunications( void ) {
|
||||||
// TODO: This functions implementation is not yet complete
|
// TODO: This functions implementation is not yet complete
|
||||||
bool result = false;
|
bool result = false;
|
||||||
uint8_t* answer = BigBuf_malloc(100);
|
uint8_t answer[100];
|
||||||
|
|
||||||
// Activate the interface
|
// Activate the interface
|
||||||
SMART_CARD_ActivateInterface();
|
SMART_CARD_ActivateInterface();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue