1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fix compiling plContainer.

This commit is contained in:
Darryl Pogue
2011-10-27 21:10:31 -07:00
parent c3c67c0a65
commit d17711b04c

View File

@ -797,7 +797,8 @@ bool plIniSectionConfigSource::ReadSubSource( const char * name )
std::vector<std::string> sections;
for ( int i=0; i<fSections.size(); i++ )
sections.push_back( fSections[i].c_str() );
return fConfigInfo->ReadFrom(&plIniSectionConfigSource( name, sections ));
plIniSectionConfigSource src(name, sections);
return fConfigInfo->ReadFrom(&src);
}
/////////////////////////////////////////////////