Skip to content

Commit

Permalink
Merge pull request #2254 from robertDurst/fuzzer-fix
Browse files Browse the repository at this point in the history
add forgotten virtual destructor to fuzzer base class

Reviewed-by: MonsieurNicolas
  • Loading branch information
latobarita authored Aug 28, 2019
2 parents 326d719 + 89301c8 commit 38f51d6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/Fuzzer.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class XDRInputFileStream;
class Fuzzer
{
public:
virtual ~Fuzzer()
{
}
// inject receives an XDRInputFileStream attached to a fuzzed input file and
// attempts to apply it to the state according to whatever apply may mean,
// i.e. apply a transaction in the case of a TransactionFuzzer or send a
Expand Down

0 comments on commit 38f51d6

Please sign in to comment.