mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
fix dereference
This commit is contained in:
parent
56a75fbf0b
commit
972f8590e0
1 changed files with 2 additions and 1 deletions
|
@ -259,7 +259,8 @@ bool HexToBuffer(const char *errormsg, const char *hexvalue, uint8_t * buffer, s
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
*bufferlen = buflen;
|
if ( bufferlen )
|
||||||
|
*bufferlen = buflen;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue