diff options
Diffstat (limited to '')
-rw-r--r-- | src/mds-kbdc/paths.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-kbdc/paths.c b/src/mds-kbdc/paths.c index e294020..031083e 100644 --- a/src/mds-kbdc/paths.c +++ b/src/mds-kbdc/paths.c @@ -74,7 +74,7 @@ char* abspath(const char* path) if (*path == '/') { - fail_if (buf = strdup(path), buf == NULL); + fail_if (xstrdup(buf, path)); return buf; } |