Skip to content

Commit

Permalink
Merge pull request #18196 from jakesmith/HPCC-31078-esp-global-ve-leak
Browse files Browse the repository at this point in the history
HPCC-31078 Fix -ve leak handling globals in esp

Reviewed-by: Mark Kelly mark.kelly@lexisnexisrisk.com
Merged-by: Gavin Halliday <ghalliday@hpccsystems.com>
  • Loading branch information
ghalliday authored Jan 9, 2024
2 parents 6f2198d + 7378c0e commit d86eb22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/platform/espp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ int init_main(int argc, const char* argv[])

// legacy esp.xml will contain a generated global section if present in the environment.
// replace the empty stub created by loadConfiguration with this environment globals section.
Owned<IPropertyTree> global = envpt->queryPropTree("global");
Owned<IPropertyTree> global = envpt->getPropTree("global");
if (global)
{
Owned<IPropertyTree> currentConfig = getComponentConfig();
Expand Down

0 comments on commit d86eb22

Please sign in to comment.