mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
network: improve readability of config_parse_ifalias()
This commit is contained in:
parent
25ed70f76f
commit
44386b449b
@ -255,11 +255,10 @@ int config_parse_ifalias(const char *unit,
|
||||
return 0;
|
||||
}
|
||||
|
||||
free(*s);
|
||||
if (*n)
|
||||
*s = TAKE_PTR(n);
|
||||
if (isempty(n))
|
||||
*s = mfree(*s);
|
||||
else
|
||||
*s = NULL;
|
||||
free_and_replace(*s, n);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user