utility: Fixed FilePath::canonical() still used uninitialized m_exists

This commit is contained in:
Eberhard Graether
2016-04-19 14:53:50 +02:00
parent 5cb06c9bb0
commit deccf2734c
+1 -1
View File
@@ -74,7 +74,7 @@ FilePath FilePath::absolute() const
FilePath FilePath::canonical() const
{
if (!m_exists)
if (!exists())
{
return FilePath(m_path);
}