summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--discover/user-event.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/discover/user-event.c b/discover/user-event.c
index 1e366ee..cf7f20c 100644
--- a/discover/user-event.c
+++ b/discover/user-event.c
@@ -290,8 +290,9 @@ struct pb_url *user_event_parse_conf_url(struct discover_context *ctx,
/* strip filename from the bootfile path, leaving only a
* directory */
p = strrchr(basedir, '/');
- if (p)
- *p = '\0';
+ if (!p)
+ p = basedir;
+ *p = '\0';
if (strlen(basedir))
url_str = talloc_asprintf_append(url_str, "%s/",
OpenPOWER on IntegriCloud