summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-04-06 20:32:36 +0000
committerJeremy Allison <jra@samba.org>2001-04-06 20:32:36 +0000
commitd4e8c87005869fce7ec993c91cd972d9a2f1a53b (patch)
treeda21814ede6f3f022a874a0d9a059047cbc01ba2 /source3/smbd
parenta01d164a12191fba335d64e21ef16d3047c9d907 (diff)
downloadsamba-d4e8c87005869fce7ec993c91cd972d9a2f1a53b.tar.gz
samba-d4e8c87005869fce7ec993c91cd972d9a2f1a53b.tar.bz2
samba-d4e8c87005869fce7ec993c91cd972d9a2f1a53b.zip
Fix from Ed Boraas for not core dumping when out of connection structs.
Jeremy. (This used to be commit f50ea32dd0deb07c626c211caedd86dc1ccd5427)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/service.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index 849ccba5fb..e20786595c 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -328,7 +328,6 @@ connection_struct *make_connection(char *service,char *user,char *password, int
if (!conn) {
DEBUG(0,("Couldn't find free connection.\n"));
*ecode = ERRnoresource;
- conn_free(conn);
return NULL;
}