From a4cfbedf1ef5899629b4b8fc12ecf7897d089785 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 23 Nov 1998 23:55:33 +0000 Subject: Fixed -Wall -Wshadow warning. Jeremy. (This used to be commit 81b90208910528a4ace683f30e39c54d8cfa12b7) --- source3/smbd/trans2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/smbd') diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index d71c23c87b..7bfb046cc2 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -1658,9 +1658,8 @@ static int call_trans2setfilepathinfo(connection_struct *conn, case SMB_SET_FILE_DISPOSITION_INFO: /* Set delete on close for open file. */ { - if (tran_call == TRANSACT2_SETFILEINFO) + if ((tran_call == TRANSACT2_SETFILEINFO) && (fsp != NULL)) { - files_struct *fsp = file_fsp(params,0); BOOL delete_on_close = (CVAL(pdata,0) ? True : False); if(fsp->is_directory) -- cgit