From f018400b69701e710f3c78924ad4821f7fea2ef9 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 5 Dec 2001 01:58:33 +0000 Subject: Follow herb's suggestion and don't strdup a string to itself. (This used to be commit ea76a687fc2614912fd6b0458622495f9920749e) --- source3/utils/net_ads.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 1bfd5c637a..a1ea063b20 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -156,6 +156,7 @@ static int net_ads_join(int argc, const char **argv) ADS_STRUCT *ads; int rc; char *password; + char *tmp_password; extern pstring global_myname; NTSTATUS status; @@ -163,9 +164,10 @@ static int net_ads_join(int argc, const char **argv) DEBUG(1,("Failed to initialise secrets database\n")); return -1; } - - password = generate_random_str(15); - password = strdup(password); + + + tmp_password = generate_random_str(15); + password = strdup(tmp_password); if (!(ads = ads_startup())) return -1; -- cgit