mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
cmdtrace.c: fix segfault when trying to list trace after loading fails, part deux
This commit is contained in:
@@ -1293,7 +1293,7 @@ int CmdTraceList(const char *Cmd) {
|
||||
|
||||
if (use_buffer == false) {
|
||||
download_trace();
|
||||
} else if (gs_traceLen == 0) {
|
||||
} else if (gs_traceLen == 0 || gs_trace ==NULL) {
|
||||
PrintAndLogEx(FAILED, "You requested a trace list in offline mode but there is no trace.");
|
||||
PrintAndLogEx(FAILED, "Consider using " _YELLOW_("`trace load`") " or removing parameter " _YELLOW_("`-1`"));
|
||||
return PM3_EINVARG;
|
||||
|
||||
Reference in New Issue
Block a user