[CHECKER] Memory Leak on commonly executed path in jfs_link (JFS2.4, kernel 2.4.19)

From: Junfeng Yang
Date: Fri Apr 30 2004 - 17:33:30 EST



get_UCSname is a memory allocation function. Should call
free_UCSname(&dname) to free the allocated memory

int jfs_link(struct dentry *old_dentry,
struct inode *dir, struct dentry *dentry)
{
....
---> if ((rc = get_UCSname(&dname, dentry, JFS_SBI(ip->i_sb)->nls_tab)))
goto out;

if ((rc = dtSearch(dir, &dname, &ino, &btstack, JFS_CREATE)))
goto out;
....
out:
txEnd(tid);

up(&JFS_IP(dir)->commit_sem);
up(&JFS_IP(ip)->commit_sem);

jfs_info("jfs_link: rc:%d", rc);
return rc;
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/