From ba107494ff0947517df1e986cde373c1800ab991 Mon Sep 17 00:00:00 2001 From: Simon Kagstrom Date: Wed, 16 Aug 2023 21:12:17 +0200 Subject: [PATCH] macho-parser: Remove debug stuff --- src/parsers/macho-parser.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/parsers/macho-parser.cc b/src/parsers/macho-parser.cc index 2185ee6b..843f1a89 100644 --- a/src/parsers/macho-parser.cc +++ b/src/parsers/macho-parser.cc @@ -253,11 +253,6 @@ class MachoParser : public IFileParser unsigned int matchParser(const std::string& filename, uint8_t* data, size_t dataSize) final { - if (IConfiguration::getInstance().keyAsInt("low-limit") == 26) - { - printf("NOT MACHO PARSER\n"); - return match_none; - } auto hdr = reinterpret_cast(data); // Don't handle big endian machines, or 32-bit binaries