diff options
author | Jeremy Allison <jra@samba.org> | 2000-06-01 17:01:34 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-06-01 17:01:34 +0000 |
commit | f0080e5a3979fac94d6668cf6ee9d9f61302839c (patch) | |
tree | ac4f4389195913c5a8241b25671e85a7af3b417e /source3/smbd | |
parent | 136544268460e56d7b551ae9efac9dc0a6b2830e (diff) | |
download | samba-f0080e5a3979fac94d6668cf6ee9d9f61302839c.tar.gz samba-f0080e5a3979fac94d6668cf6ee9d9f61302839c.tar.bz2 samba-f0080e5a3979fac94d6668cf6ee9d9f61302839c.zip |
Getting back to a compilable state (not there yet but close).
Added patches for random -> sys_random.
Added set_effective_xxx patches for AFS code.
Memory allocation changes in spoolss code.
Jeremy.
(This used to be commit c2099cfb033c2cdb6035f4f7f50ce21b98e1584d)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/conn.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/smbd/conn.c b/source3/smbd/conn.c index ebd18861fc..0e74b62ee0 100644 --- a/source3/smbd/conn.c +++ b/source3/smbd/conn.c @@ -168,11 +168,14 @@ void conn_free(connection_struct *conn) { /* Free vfs_connection_struct */ +#ifdef HAVE_LIBDL if (conn->vfs_conn != NULL) { /* Close dlopen() handle */ if (conn->vfs_conn->dl_handle) { dlclose(conn->vfs_conn->dl_handle); } +#endif /* HAVE_LIBDL */ + if (conn->vfs_conn->groups != NULL) { free(conn->vfs_conn->groups); } |