diff options
author | Jeremy Allison <jra@samba.org> | 2000-04-28 21:09:26 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-04-28 21:09:26 +0000 |
commit | 858eb53dc510d1b27c4f91045fa932a3ef546754 (patch) | |
tree | 1f29dc20793ed09d00555ace5375b15ae23b7496 /source | |
parent | 3f655de1c764b9ee1472a111621d4317f19f624d (diff) | |
download | samba-858eb53dc510d1b27c4f91045fa932a3ef546754.tar.gz samba-858eb53dc510d1b27c4f91045fa932a3ef546754.tar.xz samba-858eb53dc510d1b27c4f91045fa932a3ef546754.zip |
Moved deletion of vfs handle into smbd/conn.c as it was being done too
soon in smbd/service.c (file operations were being done after the
handle was closed).
It looks cleaner in smbd/conn.c as it is part of the closing of a conn
struct anyway.
Jeremy.
Diffstat (limited to 'source')
-rw-r--r-- | source/smbd/conn.c | 15 | ||||
-rw-r--r-- | source/smbd/service.c | 16 |
2 files changed, 15 insertions, 16 deletions
diff --git a/source/smbd/conn.c b/source/smbd/conn.c index 83289b21848..1dc4ac9e7d9 100644 --- a/source/smbd/conn.c +++ b/source/smbd/conn.c @@ -164,6 +164,21 @@ free a conn structure ****************************************************************************/ void conn_free(connection_struct *conn) { + /* Close dlopen() handle */ + + if (conn->vfs_conn->dl_handle != NULL) { + dlclose(conn->vfs_conn->dl_handle); /* should we check return val? */ + } + + /* Free vfs_connection_struct */ + + if (conn->vfs_conn != NULL) { + if (conn->vfs_conn->groups != NULL) { + free(conn->vfs_conn->groups); + } + free(conn->vfs_conn); + } + DLIST_REMOVE(Connections, conn); if (conn->ngroups && conn->groups) { diff --git a/source/smbd/service.c b/source/smbd/service.c index 8d04ce36e10..8e04f7e9896 100644 --- a/source/smbd/service.c +++ b/source/smbd/service.c @@ -654,21 +654,6 @@ void close_cnum(connection_struct *conn, uint16 vuid) } - /* Close dlopen() handle */ - - if (conn->vfs_conn->dl_handle != NULL) { - dlclose(conn->vfs_conn->dl_handle); /* should we check return val? */ - } - - /* Free vfs_connection_struct */ - - if (conn->vfs_conn != NULL) { - if (conn->vfs_conn->groups != NULL) { - free(conn->vfs_conn->groups); - } - free(conn->vfs_conn); - } - yield_connection(conn, lp_servicename(SNUM(conn)), lp_max_connections(SNUM(conn))); @@ -697,6 +682,5 @@ void close_cnum(connection_struct *conn, uint16 vuid) standard_sub_conn(conn,cmd); smbrun(cmd,NULL,False); } - conn_free(conn); } |