(_vfs_get_cwd): fixed memory leak.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2011-09-18 16:13:23 +04:00 committed by Slava Zanko
parent 1c0e5a4773
commit b61e0fc6a9
1 changed files with 2 additions and 0 deletions

View File

@ -545,6 +545,8 @@ _vfs_get_cwd (void)
{
vfs_set_raw_current_dir (vfs_path_from_str (tmp));
}
g_free (tmp);
}
}