lkml.org 
[lkml]   [2004]   [Apr]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[CHECKER] Memory Leak on commonly executed path in jfs_link (JFS 2.4, kernel 2.4.19)

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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:02    [W:0.316 / U:0.504 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site