From: Erez Zadok Date: Sun, 23 Dec 2007 21:36:29 +0000 (-0500) Subject: Unionfs: initialize namelist variable in rename X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=015066705e9ee3def5a37088bf8212e3bbda7a69;p=unionfs-2.6.39.y.git Unionfs: initialize namelist variable in rename Signed-off-by: Erez Zadok --- diff --git a/fs/unionfs/rename.c b/fs/unionfs/rename.c index 1019d474d0e..9306a2b92b3 100644 --- a/fs/unionfs/rename.c +++ b/fs/unionfs/rename.c @@ -462,7 +462,7 @@ int unionfs_rename(struct inode *old_dir, struct dentry *old_dentry, } if (S_ISDIR(new_dentry->d_inode->i_mode)) { - struct unionfs_dir_state *namelist; + struct unionfs_dir_state *namelist = NULL; /* check if this unionfs directory is empty or not */ err = check_empty(new_dentry, &namelist); if (err)