mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
ntvfs: Fix Coverity ID 1107224 Resource leak
In this error path we were leaking "fd". Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
d286b17d46
commit
ee78af33fe
@ -717,7 +717,9 @@ static NTSTATUS pvfs_create_file(struct pvfs_state *pvfs,
|
||||
if (io->generic.in.query_maximal_access) {
|
||||
status = pvfs_access_maximal_allowed(pvfs, req, name,
|
||||
&io->generic.out.maximal_access);
|
||||
NT_STATUS_NOT_OK_RETURN(status);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
goto cleanup_delete;
|
||||
}
|
||||
}
|
||||
|
||||
/* form the lock context used for byte range locking and
|
||||
|
Loading…
Reference in New Issue
Block a user