From c4029527ef5d30d613e4c47f12fa5574eb9f0eb6 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 5 Nov 2003 17:18:46 +0000 Subject: Merge from 3.0: Revision 1.209.2.44: Fix crash bug in smbclient completion. Closes bug #659. (This used to be commit decc5d9a2525176c70a17d8928587889f5f6e6af) --- source3/client/client.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index ecece8942e..5ee6913374 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2403,10 +2403,9 @@ static char **completion_fn(const char *text, int start, int end) return matches; cleanup: - while (i >= 0) { + for (i = 0; i < count; i++) free(matches[i]); - i--; - } + free(matches); return NULL; } -- cgit