diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2018-12-20 14:32:43 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-12-28 10:09:46 -0600 |
commit | 34bca9bbe7a81c4b53cacb20e996090ddf371c51 (patch) | |
tree | 570d5a169867601b536612a283c491569e140a12 /fs | |
parent | 3e80be0158ac67d936e65935db5b07663822c66d (diff) | |
download | linux-34bca9bbe7a81c4b53cacb20e996090ddf371c51.tar.bz2 |
cifs: Use kzfree() to free password
We should zero out the password before we free it.
Fixes: 3d6cacbb5310 ("cifs: Add DFS cache routines")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Paulo Alcantara <palcantara@suse.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/dfs_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/dfs_cache.c b/fs/cifs/dfs_cache.c index f4e09073bb7d..cd63c4a70875 100644 --- a/fs/cifs/dfs_cache.c +++ b/fs/cifs/dfs_cache.c @@ -1127,7 +1127,7 @@ err_free_domainname: err_free_unc: kfree(new->UNC); err_free_password: - kfree(new->password); + kzfree(new->password); err_free_username: kfree(new->username); kfree(new); |