1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* parse-packet.c (read_protected_v3_mpi): Make sure to stop

reading even for corrupted packets.
	* keygen.c (generate_user_id): Need to allocate one byte more.
	Reported by Felix von Leitner.
This commit is contained in:
Werner Koch 2007-01-15 19:31:24 +00:00
parent 05277262bc
commit 006c5af165
3 changed files with 10 additions and 3 deletions

View file

@ -2130,7 +2130,7 @@ generate_user_id()
if( !p )
return NULL;
n = strlen(p);
uid = xmalloc_clear( sizeof *uid + n - 1 );
uid = xmalloc_clear( sizeof *uid + n );
uid->len = n;
strcpy(uid->name, p);
uid->ref = 1;