Initialize 'path' correctly

It fixes the warnings
src/ntfs-3g.c: In function 'ntfs_fuse_readlink':
src/ntfs-3g.c:987:6: warning: 'path' may be used uninitialized in this function [-Wmaybe-uninitialized]
src/ntfs-3g.c: In function 'ntfs_fuse_create':
src/ntfs-3g.c:1765:6: warning: 'path' may be used uninitialized in this function [-Wmaybe-uninitialized]
edge.strict_endians
Chih-Wei Huang 2014-04-15 16:23:07 +08:00 committed by Erik Larsson
parent 25d0f163ee
commit 419d3399dc
1 changed files with 2 additions and 2 deletions

View File

@ -896,7 +896,7 @@ exit:
static int ntfs_fuse_readlink(const char *org_path, char *buf, size_t buf_size)
{
char *path;
char *path = NULL;
ntfschar *stream_name;
ntfs_inode *ni = NULL;
ntfs_attr *na = NULL;
@ -1617,7 +1617,7 @@ static int ntfs_fuse_create(const char *org_path, mode_t typemode, dev_t dev,
ntfs_inode *dir_ni = NULL, *ni;
char *dir_path;
le32 securid;
char *path;
char *path = NULL;
gid_t gid;
mode_t dsetgid;
ntfschar *stream_name;