summaryrefslogtreecommitdiff
path: root/lib/conf.c
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2011-03-11 13:18:44 +0100
committerLinus Nordberg <linus@nordu.net>2011-03-11 13:18:44 +0100
commit73d7353cb7a244d08fdd8b6d14e01db4b00824b7 (patch)
treead6f2387878e1304c4aa0e2cbac5eb52dca05d31 /lib/conf.c
parent6d5c276000a65e35dae2f672913c767e696cb56a (diff)
Handle an ENOMEM case in conf.c.
Diffstat (limited to 'lib/conf.c')
-rw-r--r--lib/conf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/conf.c b/lib/conf.c
index 14bc3ef..0f00fd8 100644
--- a/lib/conf.c
+++ b/lib/conf.c
@@ -89,6 +89,8 @@ rs_context_read_config(struct rs_context *ctx, const char *config_file)
return rs_err_ctx_push_fl (ctx, RSE_CONFIG, __FILE__, __LINE__,
"missing config name");
r->name = strdup (s);
+ if (!r->name)
+ return rs_err_ctx_push_fl (ctx, RSE_NOMEM, __FILE__, __LINE__, NULL);
typestr = cfg_getstr (cfg_config, "type");
if (!strcmp (typestr, "UDP"))