1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

Follow herb's suggestion and don't strdup a string to itself.

(This used to be commit ea76a687fc2614912fd6b0458622495f9920749e)
This commit is contained in:
Andrew Bartlett 2001-12-05 01:58:33 +00:00
parent 50b94eed80
commit f018400b69

View File

@ -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;