From 430d12876bd0df52f85fc5a905a106e6db38e4c0 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 14 May 2003 20:48:45 +0000 Subject: Fix winbindd coredump. Remember to set a ** pointer to null before searching and not finding otherwise we return a valid looking pointer that was whatever crap was on the stack. Jeremy. (This used to be commit b6e78900175d4362f3a4d0216aa635931a0c11e9) --- source3/smbd/connection.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/smbd/connection.c') diff --git a/source3/smbd/connection.c b/source3/smbd/connection.c index 5547309a81..c2718d4d70 100644 --- a/source3/smbd/connection.c +++ b/source3/smbd/connection.c @@ -38,6 +38,7 @@ TDB_CONTEXT *conn_tdb_ctx(void) static void make_conn_key(connection_struct *conn, const char *name, TDB_DATA *pkbuf, struct connections_key *pkey) { ZERO_STRUCTP(pkey); + ZERO_STRUCTP(pkbuf); pkey->pid = sys_getpid(); pkey->cnum = conn?conn->cnum:-1; fstrcpy(pkey->name, name); -- cgit