diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-09-27 14:43:33 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-29 04:23:07 +1000 |
commit | 8b57482fa8bfff901c08dbfa4b722b291862c372 (patch) | |
tree | 2e6c6be500e9249e517814c2aa35f5e687b229ab | |
parent | 6bab5c07519baa0be1bf86161236a0307c48e31f (diff) | |
download | samba-8b57482fa8bfff901c08dbfa4b722b291862c372.tar.gz samba-8b57482fa8bfff901c08dbfa4b722b291862c372.tar.bz2 samba-8b57482fa8bfff901c08dbfa4b722b291862c372.zip |
s4-dsdb Fix segfault in error case in rootdse module
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/rootdse.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/rootdse.c b/source4/dsdb/samdb/ldb_modules/rootdse.c index 23b8f631d3..4f0b11b0ab 100644 --- a/source4/dsdb/samdb/ldb_modules/rootdse.c +++ b/source4/dsdb/samdb/ldb_modules/rootdse.c @@ -1063,7 +1063,10 @@ static int rootdse_become_master(struct ldb_module *module, msg = messaging_client_init(tmp_ctx, lpcfg_messaging_path(tmp_ctx, lp_ctx), ldb_get_event_context(ldb)); - + if (!msg) { + ldb_asprintf_errstring(ldb, "Failed to generate client messaging context in %s", lpcfg_messaging_path(tmp_ctx, lp_ctx)); + return LDB_ERR_OPERATIONS_ERROR; + } irpc_handle = irpc_binding_handle_by_name(tmp_ctx, msg, "dreplsrv", &ndr_table_irpc); |