No change in behaviour.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
* not a NTSTATUS.
*/
- if (!fsp || !conn || conn != fsp->conn ||
- req->vuid != fsp->vuid ||
- fsp->is_directory || fsp->fh->fd == -1) {
+ if (fsp == NULL ||
+ conn == NULL ||
+ conn != fsp->conn ||
+ req->vuid != fsp->vuid ||
+ fsp->is_directory ||
+ fsp->fh->fd == -1)
+ {
/*
* fsp could be NULL here so use the value from the packet. JRA.
*/