diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-19 11:56:53 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-19 11:59:57 +1100 |
commit | 1219dac5ae345fcc687b7af9fdfb429a537874d1 (patch) | |
tree | 557bda0c1a1857b55245e8a6961dd1567622695e /source4/ntvfs | |
parent | d673b49dfcd75f723b39fbc914d69caae4b96237 (diff) | |
download | samba-1219dac5ae345fcc687b7af9fdfb429a537874d1.tar.gz |
s4-pvfs: fixed uninitialised variable
This caused havoc on the build farm. Interestingly, it only affected
gcc 4.3.3, not gcc 4.4.1
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/posix/pvfs_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_open.c b/source4/ntvfs/posix/pvfs_open.c index 59bd67b08d6..b100c856b49 100644 --- a/source4/ntvfs/posix/pvfs_open.c +++ b/source4/ntvfs/posix/pvfs_open.c @@ -106,7 +106,7 @@ static NTSTATUS pvfs_open_setup_eas_acl(struct pvfs_state *pvfs, union smb_open *io, struct security_descriptor *sd) { - NTSTATUS status; + NTSTATUS status = NT_STATUS_OK; /* setup any EAs that were asked for */ if (io->ntcreatex.in.ea_list) { |