summaryrefslogtreecommitdiff
path: root/source4/param
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-12-14 17:54:04 +1100
committerAndrew Tridgell <tridge@samba.org>2009-12-14 22:29:58 +1100
commitb11b22752a9a0d2e88e4857c0e211298d2a7b8a3 (patch)
tree2f0e12c2f88d59bcd86c1b88cf2c8ab73e5a31c8 /source4/param
parent7f16da7473c5daa37f07ea20491f0a96debff03a (diff)
downloadsamba-b11b22752a9a0d2e88e4857c0e211298d2a7b8a3.tar.gz
samba-b11b22752a9a0d2e88e4857c0e211298d2a7b8a3.tar.bz2
samba-b11b22752a9a0d2e88e4857c0e211298d2a7b8a3.zip
s4-loadparm: call reload_charcnv() also for a missing smb.conf
bin/net vampire with a missing smb.conf would segfault as the iconv convenience pointer had not been setup.
Diffstat (limited to 'source4/param')
-rw-r--r--source4/param/loadparm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c
index d65c3f9b16..f31d216e09 100644
--- a/source4/param/loadparm.c
+++ b/source4/param/loadparm.c
@@ -2552,6 +2552,10 @@ bool lp_load(struct loadparm_context *lp_ctx, const char *filename)
bRetval = bRetval && lp_update(lp_ctx);
+ /* we do this unconditionally, so that it happens even
+ for a missing smb.conf */
+ reload_charcnv(lp_ctx);
+
return bRetval;
}