Skip to content

Commit d1fee3e

Browse files
vmikloscaolanm
authored andcommitted
fuzzer: fix the build of 'clientsession_fuzzer'
Seems to be a fallout from commit fc2c441 (wsd: move anonymization implementation to own home, 2024-11-20). Signed-off-by: Miklos Vajna <[email protected]> Change-Id: I7392c7ebc40acae910fb308ccaa5bd7d702f0e46
1 parent b4decae commit d1fee3e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fuzzer/ClientSession.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include "config.h"
44

55
#include "ClientSession.hpp"
6+
#include <common/Anonymizer.hpp>
67
#include <fuzzer/Common.hpp>
78

89
bool DoInitialization()
@@ -51,7 +52,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
5152
Admin::instance().poll(std::chrono::microseconds(0));
5253

5354
// Make sure the anon map does not grow forever, leading to OOM.
54-
Util::clearAnonymized();
55+
Anonymizer::clearAnonymized();
5556
return 0;
5657
}
5758

0 commit comments

Comments
 (0)