mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
scd: Allow for certificates > 1024 with PC/SC.
* scd/pcsc-wrapper.c (handle_transmit): Enlarge buffer to 4096 too allow for larger certificates.
This commit is contained in:
parent
9a1e195348
commit
5798673156
1 changed files with 1 additions and 1 deletions
|
@ -714,7 +714,7 @@ handle_transmit (unsigned char *argbuf, size_t arglen)
|
|||
long err;
|
||||
struct pcsc_io_request_s send_pci;
|
||||
pcsc_dword_t recv_len;
|
||||
unsigned char buffer[1024];
|
||||
unsigned char buffer[4096];
|
||||
|
||||
/* The apdu should at least be one byte. */
|
||||
if (!arglen)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue