id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking	branch_state	votes
2053	Memory leak in mc_symlink() function	vit_r	andrew_b	"    when a try to bring this old fashion style 
{{{
    mpath = ...
    if (mpath != NULL) {
    vfs = vfs_get_class (mpath);
    result = vfs->setctl ? (...) : 0;
    g_free (mpath);
    return result;
    } else return -1;
}}}
 to currently (for mc) looking like
{{{
    mpath = ...
    if (mpath == NULL)
	return -1;
	
    vfs = vfs_get_class (mpath);
    result = vfs->setctl ? (...) : 0;
    g_free (mpath);
    return result;
}}}

 this missing g_free() popped up
 
 
"	defect	closed	major	4.7.1	mc-vfs	master	fixed						committed-master committed-stable
