From 985a71032bf055240e61259285a0b4925c925383 Mon Sep 17 00:00:00 2001 From: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> Date: Tue, 13 Dec 2022 13:55:10 +0000 Subject: gh-99955: undef ERROR and SUCCESS before redefining (fixes sanitizer warning) (#100215) --- Python/compile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python/compile.c b/Python/compile.c index 17b164a..813e0d5 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -55,6 +55,8 @@ */ #define STACK_USE_GUIDELINE 30 +#undef SUCCESS +#undef ERROR #define SUCCESS 0 #define ERROR -1 -- cgit v0.12