From 1bc22c078ed794989493187ba33698db6ce7b701 Mon Sep 17 00:00:00 2001 From: Andy Ragusa Date: Fri, 3 May 2024 04:13:31 -0700 Subject: [PATCH] blah --- headers/bytecode_api.h | 2 +- headers/bytecode_detect.h | 2 +- libclambcc/ClamBCAnalyzer.h | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/headers/bytecode_api.h b/headers/bytecode_api.h index 5f4f1b4e0b..04cdf7da2d 100644 --- a/headers/bytecode_api.h +++ b/headers/bytecode_api.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2023 Cisco Systems, Inc. and/or its affiliates. All rights reserved. + * Copyright (C) 2013-2024 Cisco Systems, Inc. and/or its affiliates. All rights reserved. * Copyright (C) 2009-2013 Sourcefire, Inc. * Authors: Török Edvin, Kevin Lin diff --git a/headers/bytecode_detect.h b/headers/bytecode_detect.h index 1e2efc00f3..039446b61f 100644 --- a/headers/bytecode_detect.h +++ b/headers/bytecode_detect.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2023 Cisco Systems, Inc. and/or its affiliates. All rights reserved. + * Copyright (C) 2013-2024 Cisco Systems, Inc. and/or its affiliates. All rights reserved. * Copyright (C) 2009-2013 Sourcefire, Inc. * * Redistribution and use in source and binary forms, with or without diff --git a/libclambcc/ClamBCAnalyzer.h b/libclambcc/ClamBCAnalyzer.h index a9a7930769..325d61f25f 100644 --- a/libclambcc/ClamBCAnalyzer.h +++ b/libclambcc/ClamBCAnalyzer.h @@ -118,11 +118,6 @@ class ClamBCAnalysis virtual uint32_t getTypeID(const llvm::Type *const t) { TypeMapTy::iterator I = typeIDs.find(t); - if (I == typeIDs.end()) { - DEBUG_NONPOINTER("BAD VALUE"); - DEBUG_VALUE(t); - } - assert((I != typeIDs.end()) && "Type ID requested for unknown type"); return I->second; }