mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
allow for larger strings (hex) to be input
This commit is contained in:
parent
3b944adbd0
commit
26aeae1f3e
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ int CLIParamStrToBuf(struct arg_str *argstr, uint8_t *data, int maxdatalen, int
|
||||||
if (!argstr->count)
|
if (!argstr->count)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
uint8_t tmpstr[(256 * 2) + 1] = {0};
|
uint8_t tmpstr[(512 * 2) + 1] = {0};
|
||||||
int ibuf = 0;
|
int ibuf = 0;
|
||||||
|
|
||||||
for (int i = 0; i < argstr->count; i++) {
|
for (int i = 0; i < argstr->count; i++) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue