summaryrefslogtreecommitdiff
path: root/lib/route/pktloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/route/pktloc.c')
-rw-r--r--lib/route/pktloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/route/pktloc.c b/lib/route/pktloc.c
index 4d7d9dd..b677ab5 100644
--- a/lib/route/pktloc.c
+++ b/lib/route/pktloc.c
@@ -94,7 +94,8 @@ static int read_pktlocs(void)
int i, err;
FILE *fd;
- asprintf(&path, "%s/pktloc", SYSCONFDIR);
+ if (build_sysconf_path(&path, "pktloc") < 0)
+ return -NLE_NOMEM;
/* if stat fails, just try to read the file */
if (stat(path, &st) == 0) {