mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Avoid warnings about possible NULL deref.
* g10/getkey.c (cache_public_key): Protect deref of CE which actually can't happen. * g10/keygen.c (quickgen_set_para): s/sprintf/snprintf/. * g10/tofu.c (end_transaction, rollback_transaction): Allow NULL for DB. * g10/trustdb.c (update_min_ownertrust): Remove useless clearling of ERR. -- Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
008aa6e6d4
commit
8a56a38387
4 changed files with 8 additions and 3 deletions
|
@ -3395,7 +3395,7 @@ quickgen_set_para (struct para_data_s *para, int for_subkey,
|
|||
para = r;
|
||||
r = xmalloc_clear (sizeof *r + 20);
|
||||
r->key = for_subkey? pSUBKEYTYPE : pKEYTYPE;
|
||||
sprintf (r->u.value, "%d", algo);
|
||||
snprintf (r->u.value, 20, "%d", algo);
|
||||
r->next = para;
|
||||
para = r;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue