Show
Ignore:
Timestamp:
04/15/07 17:26:42 (21 months ago)
Author:
nils
Message:

request at most for 256 bytes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/libopensc/card-openpgp.c

    r2971 r3149  
    615615        apdu.data = data; 
    616616        apdu.datalen = data_len; 
    617         apdu.le      = outlen; 
     617        apdu.le      = outlen > 256 ? 256 : outlen; 
    618618        apdu.resp    = out; 
    619619        apdu.resplen = outlen;