mirror of
https://github.com/AuxXxilium/kmod.git
synced 2025-01-14 07:56:14 +07:00
Log and break early if index is already open
This commit is contained in:
parent
be5a6deaea
commit
3e67676617
@ -615,12 +615,16 @@ KMOD_EXPORT int kmod_load_resources(struct kmod_ctx *ctx)
|
||||
return -ENOENT;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(index_files); i++) {
|
||||
if (ctx->indexes[i] == NULL) {
|
||||
const char *fn = index_files[i];
|
||||
size_t fnlen = strlen(fn);
|
||||
const char *prefix = "";
|
||||
const char *suffix = "";
|
||||
|
||||
if (ctx->indexes[i] == NULL) {
|
||||
INFO(ctx, "Index %s already loaded\n", fn);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (fn[0] != '/')
|
||||
prefix = ctx->dirname;
|
||||
|
||||
@ -635,7 +639,6 @@ KMOD_EXPORT int kmod_load_resources(struct kmod_ctx *ctx)
|
||||
if (ctx->indexes[i] == NULL)
|
||||
goto fail;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user