mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
gpg: Fix regression in parse_key.
* g10/parse-packet.c (parse): Better return just the gpg_err_code. (parse_key): Return the error code. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
9a85b91e92
commit
94a5442514
@ -658,7 +658,11 @@ parse (IOBUF inp, PACKET * pkt, int onlykeypkts, off_t * retpos,
|
||||
/* FIXME: Do we leak in case of an error? */
|
||||
if (!rc && iobuf_error (inp))
|
||||
rc = G10ERR_INV_KEYRING;
|
||||
return rc;
|
||||
|
||||
/* FIXME: We use only the error code for now to avoid problems with
|
||||
callers which have not been checked to always use gpg_err_code()
|
||||
when comparing error codes. */
|
||||
return rc == -1? -1 : gpg_err_code (rc);
|
||||
}
|
||||
|
||||
|
||||
@ -1909,7 +1913,6 @@ parse_key (IOBUF inp, int pkttype, unsigned long pktlen,
|
||||
int i, version, algorithm;
|
||||
unsigned long timestamp, expiredate, max_expiredate;
|
||||
int npkey, nskey;
|
||||
int rc = 0;
|
||||
u32 keyid[2];
|
||||
PKT_public_key *pk;
|
||||
|
||||
@ -2313,7 +2316,7 @@ parse_key (IOBUF inp, int pkttype, unsigned long pktlen,
|
||||
|
||||
leave:
|
||||
iobuf_skip_rest (inp, pktlen, 0);
|
||||
return rc;
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user