From 0d2cdcedc0911205873469a809eabc2c1c7af1c2 Mon Sep 17 00:00:00 2001 From: Qinkun Bao Date: Wed, 11 Aug 2021 10:37:46 -0700 Subject: [PATCH] Update OpenEnclave.qll Signed-off-by: qinkunbao --- src/static/codeql/queries/cpp/openenclave/OpenEnclave.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/static/codeql/queries/cpp/openenclave/OpenEnclave.qll b/src/static/codeql/queries/cpp/openenclave/OpenEnclave.qll index aed0629..fb53c97 100644 --- a/src/static/codeql/queries/cpp/openenclave/OpenEnclave.qll +++ b/src/static/codeql/queries/cpp/openenclave/OpenEnclave.qll @@ -8,8 +8,8 @@ import Dereferences /** * EnclaveEnterFunction - Entry point function for an enclave. * During an ECALL __oe_handle_main() function is called by oe_enter(), which is called by the EENTER instruction. - * Since oe_enter is implemented in assembly, CodeQL cannot construct call flow graph flowing from host to enclave. - * __oe_handle_main can be consideredd as enclave entry point function to porform taint analysis on untrusted host pointers. + * Since oe_enter is implemented in assembly, CodeQL cannot construct a call flow graph flowing from host to enclave. + * __oe_handle_main can be considered as enclave entry point function to perform taint analysis on untrusted host pointers. */ class EnclaveEnterFunction extends Function { EnclaveEnterFunction() { this.getName() = "__oe_handle_main" }