mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Fixed memory allocation bug and typos.
This commit is contained in:
parent
c45f73774d
commit
ccd5fc4758
34 changed files with 2784 additions and 2984 deletions
|
@ -243,7 +243,7 @@ import( IOBUF inp, const char* fname,struct stats_s *stats,
|
|||
unsigned char **fpr,size_t *fpr_len,unsigned int options )
|
||||
{
|
||||
PACKET *pending_pkt = NULL;
|
||||
KBNODE keyblock;
|
||||
KBNODE keyblock = NULL;
|
||||
int rc = 0;
|
||||
|
||||
getkey_disable_caches();
|
||||
|
@ -566,10 +566,8 @@ check_prefs_warning(PKT_public_key *pk)
|
|||
log_info(_("WARNING: key %s contains preferences for unavailable\n"),
|
||||
keystr_from_pk(pk));
|
||||
/* TRANSLATORS: This string is belongs to the previous one. They are
|
||||
only split up to allow printing of a common prefix. The
|
||||
check_prefs_warning tag is a hack to make this string unique. */
|
||||
log_info(_(" algorithms on these user IDs:\n"
|
||||
"\0" "check_prefs_warning"));
|
||||
only split up to allow printing of a common prefix. */
|
||||
log_info(_(" algorithms on these user IDs:\n"));
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue