mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-04 17:47:03 +03:00
dynamic-user: fix potential segfault
This commit is contained in:
parent
8301aa0bf1
commit
288ca7af8c
@ -104,9 +104,11 @@ static int dynamic_user_acquire(Manager *m, const char *name, DynamicUser** ret)
|
||||
|
||||
d = hashmap_get(m->dynamic_users, name);
|
||||
if (d) {
|
||||
/* We already have a structure for the dynamic user, let's increase the ref count and reuse it */
|
||||
d->n_ref++;
|
||||
*ret = d;
|
||||
if (ret) {
|
||||
/* We already have a structure for the dynamic user, let's increase the ref count and reuse it */
|
||||
d->n_ref++;
|
||||
*ret = d;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user