From 6946b40d9f5d574450eebf0a90441349e2a35cd8 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 18 Nov 1998 18:59:39 +0000 Subject: Fixed crash bug found by russian codepage problem.... although how the two are related I'm not sure :-). Problem was assuming that fd_ptr in the files_struct was always non-null (which is not the case when directories are open). Jeremy. --- source/smbd/trans2.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'source/smbd/trans2.c') diff --git a/source/smbd/trans2.c b/source/smbd/trans2.c index 4eda143994e..d71c23c87b7 100644 --- a/source/smbd/trans2.c +++ b/source/smbd/trans2.c @@ -1755,7 +1755,7 @@ file %s as a share exists that was not opened with FILE_DELETE access.\n", (iterate_fsp->share_mode | DELETE_ON_CLOSE_FLAG) : (iterate_fsp->share_mode & ~DELETE_ON_CLOSE_FLAG) ); - DEBUG(10,("call_trans2setfilepathinfo: Changing share mode for fnum %d, file %s\ + DEBUG(10,("call_trans2setfilepathinfo: Changing share mode for fnum %d, file %s \ dev = %x, inode = %.0f from %x to %x\n", iterate_fsp->fnum, iterate_fsp->fsp_name, (unsigned int)dev, (double)inode, iterate_fsp->share_mode, new_share_mode )); @@ -1770,9 +1770,12 @@ dev = %x, inode = %.0f\n", iterate_fsp->fnum, (unsigned int)dev, (double)inode)) * counted struct. Delete when the last reference * goes away. */ - fsp->fd_ptr->delete_on_close = delete_on_close; + fsp->fd_ptr->delete_on_close = delete_on_close; - unlock_share_entry(fsp->conn, dev, inode, token); + unlock_share_entry(fsp->conn, dev, inode, token); + + DEBUG(10, ("call_trans2setfilepathinfo: %s delete on close flag for fnum = %d, file %s\n", + delete_on_close ? "Added" : "Removed", fsp->fnum, fsp->fsp_name )); } /* end if(delete_on_close && !GET_DELETE_ON_CLOSE_FLAG(fsp->share_mode)) */ } /* end if lp_share_modes() */ -- cgit