Fix input framework memory leaks.

Couldn't figure out a test case: gperftools didn't report them (maybe
due to threading?), but valgrind did.
This commit is contained in:
Jon Siwek 2013-08-29 14:13:16 -05:00
parent e54ea6d7e9
commit b6e2505202
2 changed files with 11 additions and 11 deletions

View file

@ -121,6 +121,7 @@ public:
~ReaderInfo()
{
delete [] source;
delete [] name;
for ( config_map::iterator i = config.begin(); i != config.end(); i++ )
{