diff options
Diffstat (limited to '')
-rw-r--r-- | g10/parse-packet.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/g10/parse-packet.c b/g10/parse-packet.c index ec8a64121..9a733b521 100644 --- a/g10/parse-packet.c +++ b/g10/parse-packet.c @@ -1936,15 +1936,12 @@ parse_signature (IOBUF inp, int pkttype, unsigned long pktlen, p = parse_sig_subpkt (sig->hashed, SIGSUBPKT_SIGNERS_UID, &len); if (p && len) { - sig->signers_uid = xtrymalloc (len+1); + sig->signers_uid = try_make_printable_string (p, len, 0); if (!sig->signers_uid) { rc = gpg_error_from_syserror (); goto leave; } - /* Note that we don't care about binary zeroes in the value. */ - memcpy (sig->signers_uid, p, len); - sig->signers_uid[len] = 0; } p = parse_sig_subpkt (sig->hashed, SIGSUBPKT_NOTATION, NULL); |