1
0
Fork 0

Merging upstream version 4.2+20230227.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-14 06:03:20 +01:00
parent 58a85b45ad
commit cd74b52c0d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
2 changed files with 10 additions and 1 deletions

View file

@ -292,6 +292,10 @@ struct map_ent *map_by_uuid(struct map_ent **map, int uuid[4])
struct map_ent *map_by_devnm(struct map_ent **map, char *devnm)
{
struct map_ent *mp;
if (!devnm)
return NULL;
if (!*map)
map_read(map);