1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-25 23:21:33 +03:00

sd-bus: fix reference counter to be incremented

Fixes #23097.
This commit is contained in:
Yu Watanabe 2022-04-17 07:05:07 +09:00
parent c8431e9e35
commit b21f237d99

View File

@ -191,12 +191,12 @@ _public_ int sd_bus_track_add_name(sd_bus_track *track, const char *name) {
i = hashmap_get(track->names, name);
if (i) {
if (track->recursive) {
unsigned k = track->n_ref + 1;
unsigned k = i->n_ref + 1;
if (k < track->n_ref) /* Check for overflow */
if (k < i->n_ref) /* Check for overflow */
return -EOVERFLOW;
track->n_ref = k;
i->n_ref = k;
}
bus_track_remove_from_queue(track);