From c586c3d962e8ee57e90f76147b458e1bea0ed988 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Wed, 14 Sep 2016 18:13:39 +0200 Subject: [PATCH] libgpo: allow empty values in gp inifile parsing code. Guenther Signed-off-by: Guenther Deschner Reviewed-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Fri Jan 6 16:16:02 CET 2017 on sn-devel-144 --- libgpo/gpo_ini.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libgpo/gpo_ini.c b/libgpo/gpo_ini.c index 95673bce13a..198e8afc1ec 100644 --- a/libgpo/gpo_ini.c +++ b/libgpo/gpo_ini.c @@ -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; } -- 2.47.2