bug fix for recent memory leak patch

This commit is contained in:
Vern Paxson 2018-06-29 11:30:21 -07:00
parent cfe45e0af0
commit 5ce3d1b899

View file

@ -168,7 +168,8 @@ int Specific_RE_Matcher::CompileSet(const string_list& set, const int_list& idx)
if ( set_nfa != nfa )
Unref(set_nfa);
Unref(nfa);
else
Unref(nfa);
nfa = 0;
return 0;