From 62ae6e36f09c2ec402bc7816651bfaa1af2e6bb6 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 30 Mar 2004 08:11:59 +0000 Subject: Merge a fix from HEAD to 3_0 Volker (This used to be commit 6bc88d91e569541e4d4a2147e28439db96d02bd6) --- source3/nsswitch/winbindd_wins.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/nsswitch/winbindd_wins.c b/source3/nsswitch/winbindd_wins.c index bc982d0044..a1eef159c0 100644 --- a/source3/nsswitch/winbindd_wins.c +++ b/source3/nsswitch/winbindd_wins.c @@ -201,7 +201,10 @@ enum winbindd_result winbindd_wins_byname(struct winbindd_cli_state *state) } if (i != 0) { /* Clear out the newline character */ - response[strlen(response)-1] = ' '; + /* But only if there is something in there, + otherwise we clobber something in the stack */ + if (strlen(response)) + response[strlen(response)-1] = ' '; } fstrcat(response,addr); fstrcat(response,"\t"); -- cgit