From: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> Date: Tue, 13 Dec 2022 13:55:10 +0000 (+0000) Subject: gh-99955: undef ERROR and SUCCESS before redefining (fixes sanitizer warning) (#100215) X-Git-Tag: v3.12.0a4~221 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=985a71032bf055240e61259285a0b4925c925383;p=thirdparty%2FPython%2Fcpython.git gh-99955: undef ERROR and SUCCESS before redefining (fixes sanitizer warning) (#100215) --- diff --git a/Python/compile.c b/Python/compile.c index 17b164a4d06e..813e0d5503b4 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