mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-13 22:21:09 +02:00
Fix two unused/possible-uninitialized var warnings.
--
This commit is contained in:
parent
b6d621583f
commit
a2600e42f9
@ -36,7 +36,7 @@ amkdir_p (char **directory_components)
|
|||||||
int count;
|
int count;
|
||||||
char **dirs;
|
char **dirs;
|
||||||
int i;
|
int i;
|
||||||
int rc;
|
int rc = 0;
|
||||||
|
|
||||||
for (count = 0; directory_components[count]; count ++)
|
for (count = 0; directory_components[count]; count ++)
|
||||||
;
|
;
|
||||||
|
@ -293,7 +293,6 @@ print_and_check_one_sig (KBNODE keyblock, KBNODE node,
|
|||||||
{
|
{
|
||||||
PKT_public_key *pk = keyblock->pkt->pkt.public_key;
|
PKT_public_key *pk = keyblock->pkt->pkt.public_key;
|
||||||
const unsigned char *s;
|
const unsigned char *s;
|
||||||
u32 expire;
|
|
||||||
|
|
||||||
s = parse_sig_subpkt (sig->hashed, SIGSUBPKT_PRIMARY_UID, NULL);
|
s = parse_sig_subpkt (sig->hashed, SIGSUBPKT_PRIMARY_UID, NULL);
|
||||||
if (s && *s)
|
if (s && *s)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user