fix core related to increasing max query length

This commit is contained in:
Matt
2015-07-13 19:00:47 -06:00
parent c3a0f21600
commit fc4b4db425
2 changed files with 5 additions and 0 deletions

@ -18,6 +18,8 @@ void HashTableX::constructor() {
m_useKeyMagic = false;
m_ks = 0;
m_allowGrowth = true;
m_numSlots = 0;
m_numSlotsUsed = 0;
}
void HashTableX::destructor() {

@ -74,6 +74,9 @@ void Query::reset ( ) {
qw->destructor();
}
m_stackBuf.purge();
m_qterms = NULL;
m_sb.purge();
m_osb.purge();
m_docIdRestriction = 0LL;