OpenPGP: use "hist_bytes" DO 5F52 as args to pgp_parse_hist_bytes()

Fix glitch that crept in during re-factoring.
This should unbreak Yubikeys.
This commit is contained in:
Peter Marschall 2018-12-22 23:01:10 +01:00 committed by Frank Morgner
parent 1a60cd761f
commit 391131bb5e
1 changed files with 2 additions and 2 deletions

View File

@ -720,8 +720,8 @@ pgp_get_card_features(sc_card_t *card)
if ((pgp_get_blob(card, priv->mf, 0x5f52, &blob) >= 0) &&
(blob->data != NULL) && (blob->data[0] == 0x00)) {
if (hist_bytes_len > 4) {
pgp_parse_hist_bytes(card, hist_bytes+1, hist_bytes_len-4);
if (blob->len > 4) {
pgp_parse_hist_bytes(card, blob->data+1, blob->len-4);
}
/* get card status from historical bytes status indicator */