Fix _dssetup_DsRoleGetPrimaryDomainInformation().
authorGünther Deschner <gd@samba.org>
Thu, 6 Mar 2008 19:44:28 +0000 (20:44 +0100)
committerGünther Deschner <gd@samba.org>
Thu, 6 Mar 2008 19:44:28 +0000 (20:44 +0100)
Guenther
(This used to be commit 5eb7b7a9db4bda40660df5ab67bfea99e75716f9)

source3/rpc_server/srv_dssetup_nt.c

index ea535a337599cabecf734957d27c85e8c6dd3554..2b18e6b2aeb914143cec45251f708a8a349dbcf2 100644 (file)
@@ -35,7 +35,7 @@ static WERROR fill_dsrole_dominfo_basic(TALLOC_CTX *ctx,
                                        struct dssetup_DsRolePrimaryDomInfoBasic **info)
 {
        struct dssetup_DsRolePrimaryDomInfoBasic *basic = NULL;
-       fstring dnsdomain;
+       char *dnsdomain = NULL;
 
        DEBUG(10,("fill_dsrole_dominfo_basic: enter\n"));
 
@@ -71,7 +71,10 @@ static WERROR fill_dsrole_dominfo_basic(TALLOC_CTX *ctx,
        /* fill in some additional fields if we are a member of an AD domain */
 
        if (lp_security() == SEC_ADS) {
-               fstrcpy(dnsdomain, lp_realm());
+               dnsdomain = talloc_strdup(ctx, lp_realm());
+               if (!dnsdomain) {
+                       return WERR_NOMEM;
+               }
                strlower_m(dnsdomain);
                basic->dns_domain = dnsdomain;