mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-21 14:47:03 +01:00
common: Make nvc_lookup more robust.
* common/name-value.c (nvc_first): Allow for NULL arg. (nvc_lookup): Allow for PK being NULL. -- GnuPG-bug-id: 6176
This commit is contained in:
parent
9eb03b722c
commit
8c22b00268
@ -546,21 +546,32 @@ nve_t
|
||||
nvc_first (nvc_t pk)
|
||||
{
|
||||
nve_t entry;
|
||||
|
||||
if (!pk)
|
||||
return NULL;
|
||||
|
||||
for (entry = pk->first; entry; entry = entry->next)
|
||||
if (entry->name)
|
||||
return entry;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/* Get the first entry with the given name. */
|
||||
/* Get the first entry with the given name. Return NULL if it does
|
||||
* not exist. */
|
||||
nve_t
|
||||
nvc_lookup (nvc_t pk, const char *name)
|
||||
{
|
||||
nve_t entry;
|
||||
|
||||
if (!pk)
|
||||
return NULL;
|
||||
|
||||
for (entry = pk->first; entry; entry = entry->next)
|
||||
if (entry->name && ascii_strcasecmp (entry->name, name) == 0)
|
||||
return entry;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user