diff options
author | Jeremy Allison <jra@samba.org> | 2003-01-17 06:35:33 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-01-17 06:35:33 +0000 |
commit | 074c99a852ce79f4c7791d709b82dc80c32e4d04 (patch) | |
tree | 7bbc22942d8a5fd227e981187eb2e49eb8a3a251 /source3/rpc_server | |
parent | 96c795cea7518b50a40caba34e656f056a832589 (diff) | |
download | samba-074c99a852ce79f4c7791d709b82dc80c32e4d04.tar.gz samba-074c99a852ce79f4c7791d709b82dc80c32e4d04.tar.bz2 samba-074c99a852ce79f4c7791d709b82dc80c32e4d04.zip |
Fix reference count bug where smbd's would not terminate with no
open resources.
Jeremy.
(This used to be commit 0173d6fe164568a73247fa542895443fad6c20c3)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_lsa_hnd.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/source3/rpc_server/srv_lsa_hnd.c b/source3/rpc_server/srv_lsa_hnd.c index 2d04d72323..814fa60aab 100644 --- a/source3/rpc_server/srv_lsa_hnd.c +++ b/source3/rpc_server/srv_lsa_hnd.c @@ -137,14 +137,6 @@ BOOL create_policy_hnd(pipes_struct *p, POLICY_HND *hnd, void (*free_fn)(void *) DLIST_ADD(p->pipe_handles->Policy, pol); p->pipe_handles->count++; - /* - * Ensure we don't idle this connection if a handle is open. - * Increment the number of files open on the first handle create. - */ - - if (p->pipe_handles->count == 1) - p->conn->num_files_open++; - *hnd = pol->pol_hnd; DEBUG(4,("Opened policy hnd[%d] ", (int)p->pipe_handles->count)); @@ -212,15 +204,6 @@ BOOL close_policy_hnd(pipes_struct *p, POLICY_HND *hnd) p->pipe_handles->count--; - /* - * Ensure we can idle this connection if this is the last handle. - * Decrement the number of files open on the last handle delete. - */ - - if (p->pipe_handles->count == 0) - p->conn->num_files_open--; - - DLIST_REMOVE(p->pipe_handles->Policy, pol); ZERO_STRUCTP(pol); |