1
1

mc_ungetlocalcopy(): fixed wrong condition.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2010-05-16 11:24:50 +04:00
родитель e7c3711021
Коммит 7843203257

Просмотреть файл

@ -1327,7 +1327,7 @@ mc_ungetlocalcopy (const char *pathname, const char *local, int has_changed)
char *path;
path = vfs_canon_and_translate (pathname);
if (path == NULL)
if (path != NULL)
{
struct vfs_class *vfs = vfs_get_class (path);