mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
See ChangeLog: Mon Jul 10 16:08:57 CEST 2000 Werner Koch
This commit is contained in:
parent
836f226479
commit
6e4d721c93
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jul 10 16:08:57 CEST 2000 Werner Koch <wk@>
|
||||
|
||||
* parse-packet.c (enum_sig_subpkt): Fixed testing on crtitical bit in case
|
||||
of a NULL buffer. Reported by Peter Marschall.
|
||||
|
||||
Wed Jul 5 13:28:45 CEST 2000 Werner Koch <wk@>
|
||||
|
||||
* keyedit.c, keyid.c: Add some _()
|
||||
|
|
|
@ -920,8 +920,12 @@ enum_sig_subpkt( const byte *buffer, sigsubpkttype_t reqtype,
|
|||
int seq = 0;
|
||||
int reqseq = start? *start: 0;
|
||||
|
||||
if( !buffer || reqseq == -1 )
|
||||
return NULL;
|
||||
if( !buffer || reqseq == -1 ) {
|
||||
/* return some value different from NULL to indicate that
|
||||
* there is no crtitical bit we do not understand. The caller
|
||||
* will never use the value. Yes I know, it is an ugly hack */
|
||||
return reqtype == SIGSUBPKT_TEST_CRITICAL? (const byte*)&buffer : NULL;
|
||||
}
|
||||
buflen = (*buffer << 8) | buffer[1];
|
||||
buffer += 2;
|
||||
while( buflen ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue