summaryrefslogtreecommitdiff
path: root/lib/cache_mngr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cache_mngr.c')
-rw-r--r--lib/cache_mngr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/cache_mngr.c b/lib/cache_mngr.c
index 63cc0d3..bf92d11 100644
--- a/lib/cache_mngr.c
+++ b/lib/cache_mngr.c
@@ -314,11 +314,12 @@ int nl_cache_mngr_add(struct nl_cache_mngr *mngr, const char *name,
struct nl_cache *cache;
int err;
- ops = nl_cache_ops_lookup(name);
+ ops = nl_cache_ops_lookup_safe(name);
if (!ops)
return -NLE_NOCACHE;
cache = nl_cache_alloc(ops);
+ nl_cache_ops_put(ops);
if (!cache)
return -NLE_NOMEM;