summaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2023-02-13 12:34:28 +0100
committerFelix Fietkau <nbd@nbd.name>2023-02-13 12:34:36 +0100
commitc1342d934b2d8b09bbd3cebe271809665b16f177 (patch)
treeeb4bf2464fd47d31e435d6e754137380ae02961b /lib
parentc43bb9d8fe8d743e59b5fab847699cfab40760b9 (diff)
nl80211: add missing ucv_get() calls
Arguments stored in the registry need an extra reference Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'lib')
-rw-r--r--lib/nl80211.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/nl80211.c b/lib/nl80211.c
index e2c0c07..90b50e6 100644
--- a/lib/nl80211.c
+++ b/lib/nl80211.c
@@ -2514,7 +2514,7 @@ uc_nl_listener(uc_vm_t *vm, size_t nargs)
break;
}
- ucv_array_set(listener_registry, i + 1, cb_func);
+ ucv_array_set(listener_registry, i + 1, ucv_get(cb_func));
l = xalloc(sizeof(*l));
l->index = i;
if (!uc_nl_fill_cmds(l->cmds, cmds)) {
@@ -2524,7 +2524,7 @@ uc_nl_listener(uc_vm_t *vm, size_t nargs)
}
rv = uc_resource_new(listener_type, l);
- ucv_array_set(listener_registry, i, rv);
+ ucv_array_set(listener_registry, i, ucv_get(rv));
listener_vm = vm;
return rv;