1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
* stdlib/canonicalize.c (__realpath): Simplify.
This commit is contained in:
Ulrich Drepper
2004-02-26 20:38:54 +00:00
parent 266c1f50df
commit d3a4681c8d
2 changed files with 3 additions and 1 deletions

View File

@@ -206,7 +206,7 @@ __realpath (const char *name, char *resolved)
*dest = '\0';
assert (resolved == NULL || resolved == rpath);
return resolved ?: rpath;
return rpath;
error:
assert (resolved == NULL || resolved == rpath);