Skip to content

Commit

Permalink
HPCC-31078 Fix -ve leak handling globals in esp
Browse files Browse the repository at this point in the history
Signed-off-by: Jake Smith <[email protected]>
  • Loading branch information
jakesmith committed Jan 8, 2024
1 parent 6c75870 commit 7378c0e
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 7378c0e

Please sign in to comment.