summaryrefslogtreecommitdiffstats
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
commitf50ea32dd0deb07c626c211caedd86dc1ccd5427 (patch)
tree2dc134e00e7bca7c017de826a7359bbedf52dc71
parent2097298565b367157a3bc0c1178f17b1a6bbdd86 (diff)
downloadsamba-f50ea32dd0deb07c626c211caedd86dc1ccd5427.tar.gz
samba-f50ea32dd0deb07c626c211caedd86dc1ccd5427.tar.xz
samba-f50ea32dd0deb07c626c211caedd86dc1ccd5427.zip
Fix from Ed Boraas for not core dumping when out of connection structs.
Jeremy.
-rw-r--r--source/smbd/service.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/smbd/service.c b/source/smbd/service.c
index 849ccba5fbb..e20786595cd 100644
--- a/source/smbd/service.c
+++ b/source/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;
}