config: take a weakref to ctx
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 4 Jan 2012 10:14:54 +0000 (08:14 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 4 Jan 2012 10:49:10 +0000 (08:49 -0200)
Commit "b6a4dfb config: save list of config paths with their timestamps"
removed the weakref to ctx. Add it back.

libkmod/libkmod-config.c

index db9fbd6..f437247 100644 (file)
@@ -796,6 +796,7 @@ int kmod_config_new(struct kmod_ctx *ctx, struct kmod_config **p_config,
                goto oom;
 
        config->paths = path_list;
+       config->ctx = ctx;
 
        for (; list != NULL; list = kmod_list_remove(list)) {
                char fn[PATH_MAX];