mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-30 16:17:02 +01:00
scd: Avoid buffer overrun with more than 16 PC/SC readers.
* scd/apdu.c (apdu_dev_list_start): Fix end condition. -- Signed-off-by: Jakub Jelen <jjelen@redhat.com> This is part of GnuPG-bug-id: 7129 Fixes-commit: e8534f899915a039610973a84042cbe25a5e7ce2 (cherry picked from commit 4c1b0070354db0b9b0516d9e5453e47fc03a0aac)
This commit is contained in:
parent
521455df07
commit
524e3a9345
@ -2094,7 +2094,7 @@ apdu_dev_list_start (const char *portstr, struct dev_list **l_p)
|
||||
nreader -= n + 1;
|
||||
p += n + 1;
|
||||
dl->idx_max++;
|
||||
if (dl->idx_max > MAX_READER)
|
||||
if (dl->idx_max >= MAX_READER)
|
||||
{
|
||||
log_error ("too many readers from pcsc_list_readers\n");
|
||||
dl->idx_max--;
|
||||
|
Loading…
x
Reference in New Issue
Block a user