From dd4fb1c8f668f78fbcf5052e80c5c40d4cdad20c Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Fri, 30 Oct 2020 15:21:20 +0900 Subject: gpg: Fix first zero-byte case for SOS handling. * g10/export.c (transfer_format_to_openpgp): Check the first byte. * g10/pkglue.c (sexp_extract_param_sos): Likewise. -- GnuPG-bug-id: 5116 Signed-off-by: NIIBE Yutaka --- g10/export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'g10/export.c') diff --git a/g10/export.c b/g10/export.c index a9eba1544..8a4f6f1f3 100644 --- a/g10/export.c +++ b/g10/export.c @@ -985,7 +985,7 @@ transfer_format_to_openpgp (gcry_sexp_t s_pgp, PKT_public_key *pk) unsigned int nbits = valuelen*8; const unsigned char *p = value; - if (nbits >= 8 && !(*p & 0x80)) + if (*p && nbits >= 8 && !(*p & 0x80)) if (--nbits >= 7 && !(*p & 0x40)) if (--nbits >= 6 && !(*p & 0x20)) if (--nbits >= 5 && !(*p & 0x10)) -- cgit v1.2.3