1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

libgpo: allow empty values in gp inifile parsing code.

Guenther

Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Fri Jan  6 16:16:02 CET 2017 on sn-devel-144
This commit is contained in:
Günther Deschner 2016-09-14 18:13:39 +02:00 committed by Andreas Schneider
parent 7eeb2edc50
commit c586c3d962

View File

@ -377,10 +377,11 @@ NTSTATUS gp_inifile_init_context_direct(TALLOC_CTX *mem_ctx,
goto failed;
}
rv = pm_process(tmp_filename != NULL ? tmp_filename : unix_path,
change_section,
store_keyval_pair,
gp_ctx);
rv = pm_process_with_flags(tmp_filename != NULL ? tmp_filename : unix_path,
true,
change_section,
store_keyval_pair,
gp_ctx);
if (rv != 0) {
return NT_STATUS_NO_SUCH_FILE;
}