mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-30 03:29:01 -07:00
add saveFileJSONrootEx with overwrite function
This commit is contained in:
parent
3fe6c417be
commit
c83c62855b
2 changed files with 10 additions and 1 deletions
|
@ -667,10 +667,18 @@ out:
|
|||
return retval;
|
||||
}
|
||||
int saveFileJSONroot(const char *preferredName, void *root, size_t flags, bool verbose) {
|
||||
return saveFileJSONrootEx(preferredName, root, flags, verbose, false);
|
||||
}
|
||||
int saveFileJSONrootEx(const char *preferredName, void *root, size_t flags, bool verbose, bool overwrite) {
|
||||
if (root == NULL)
|
||||
return PM3_EINVARG;
|
||||
|
||||
char *filename = newfilenamemcopy(preferredName, ".json");
|
||||
char *filename = NULL;
|
||||
if (overwrite)
|
||||
filename = filenamemcopy(preferredName, ".json");
|
||||
else
|
||||
filename = newfilenamemcopy(preferredName, ".json");
|
||||
|
||||
if (filename == NULL)
|
||||
return PM3_EMALLOC;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue