summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/conf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/conf.c b/lib/conf.c
index 14b7579..8ad0a45 100644
--- a/lib/conf.c
+++ b/lib/conf.c
@@ -241,9 +241,11 @@ struct rs_realm *
rs_conf_find_realm(struct rs_context *ctx, const char *name)
{
struct rs_realm *r;
+ assert (ctx);
- for (r = ctx->config->realms; r; r = r->next)
- if (strcmp (r->name, name) == 0)
+ if (ctx->config)
+ for (r = ctx->config->realms; r; r = r->next)
+ if (strcmp (r->name, name) == 0)
return r;
return NULL;