mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fix: 'hf snoop' - buffer overflow (@satuoni)
This commit is contained in:
parent
feea1a45d9
commit
674db8d5ac
3 changed files with 12 additions and 8 deletions
|
@ -124,7 +124,10 @@ uint16_t BigBuf_max_traceLen(void)
|
|||
void clear_trace() {
|
||||
traceLen = 0;
|
||||
}
|
||||
|
||||
void set_tracelen(uint16_t tl)
|
||||
{
|
||||
traceLen=tl;
|
||||
}
|
||||
void set_tracing(bool enable) {
|
||||
tracing = enable;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue