'Genode::Path': Remove superfluous slashes first

Fixes #367.
This commit is contained in:
Christian Prochaska 2012-09-21 19:15:22 +02:00 committed by Norman Feske
parent c12d2f80f2
commit 9dc213b296
1 changed files with 1 additions and 1 deletions

View File

@ -177,9 +177,9 @@ namespace Genode {
*/
void _canonicalize()
{
strip_superfluous_slashes(_path);
strip_superfluous_dotslashes(_path);
strip_double_dot_dirs(_path);
strip_superfluous_slashes(_path);
remove_trailing('.', _path);
}