opensc-explorer: refactor arg_to_path()

* fix indentation
* fix spaces before opening curly braces
This commit is contained in:
Peter Marschall 2020-02-08 16:59:30 +01:00 committed by Frank Morgner
parent 88dce12181
commit 78c79c0efb
1 changed files with 4 additions and 3 deletions

View File

@ -371,7 +371,8 @@ arg_to_path(const char *arg, sc_path_t *path, int is_id)
} else {
/* file id */
u8 cbuf[2];
if (arg_to_fid(arg, cbuf) < 0)
if (arg_to_fid(arg, cbuf) < 0)
return -1;
if ((cbuf[0] == 0x3F && cbuf[1] == 0x00) || is_id) {
@ -380,8 +381,8 @@ arg_to_path(const char *arg, sc_path_t *path, int is_id)
path->type = (is_id) ? SC_PATH_TYPE_FILE_ID : SC_PATH_TYPE_PATH;
} else {
*path = current_path;
if (path->type == SC_PATH_TYPE_DF_NAME) {
if (path->len > sizeof(path->aid.value)) {
if (path->type == SC_PATH_TYPE_DF_NAME) {
if (path->len > sizeof(path->aid.value)) {
fprintf(stderr, "Invalid length of DF_NAME path\n");
return -1;
}