fix small memory leak (field description given to readers was never freed).

This commit is contained in:
Bernhard Amann 2012-03-22 15:11:42 -07:00
parent 6c4a40f176
commit f73de0bc8c
3 changed files with 16 additions and 1 deletions

View file

@ -228,6 +228,9 @@ private:
char* buf;
unsigned int buf_len;
bool autostart;
unsigned int num_fields;
const threading::Field* const * fields; // raw mapping
};
}