Skip to content

Commit

Permalink
fix #169
Browse files Browse the repository at this point in the history
  • Loading branch information
tihmstar committed Oct 29, 2021
1 parent bc858e7 commit 59554be
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions tsschecker/tss.c
Original file line number Diff line number Diff line change
Expand Up @@ -788,12 +788,19 @@ int tss_request_add_ap_tags(plist_t request, plist_t parameters, plist_t overrid
return -1;
}

/* do not populate BasebandFirmware, only in baseband request */
if ((strcmp(key, "BasebandFirmware") == 0)) {
free(key);
continue;
}
/* do not populate BasebandFirmware, only in baseband request */
if ((strcmp(key, "BasebandFirmware") == 0)) {
free(key);
continue;
}

/* do not populate Savage, only in Savage request */
if ((strncmp(key, "Savage",sizeof("Savage")-1) == 0)) {
free(key);
continue;
}


/* only used with diagnostics firmware */
if ((strcmp(key, "Diags") == 0)) {
free(key);
Expand Down

0 comments on commit 59554be

Please sign in to comment.