From 38e5e47b07696a0954145bf68148cb0301cf133c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Tue, 15 Jun 2021 10:52:26 +0200 Subject: [PATCH] tools: Ignore excluded lib functions for rename script --- tools/rename_functions_in_ida.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rename_functions_in_ida.py b/tools/rename_functions_in_ida.py index 55733076..e298f58f 100644 --- a/tools/rename_functions_in_ida.py +++ b/tools/rename_functions_in_ida.py @@ -14,7 +14,7 @@ with open(csv_path, "r") as f: for fn in reader: addr = int(fn[0], 16) decomp_name = fn[3] - if not decomp_name: + if not decomp_name or decomp_name == "l": continue # Get rid of status markers.