From 1b2a989dfc6a9f295196ccae1e7301fc710aa88e Mon Sep 17 00:00:00 2001 From: obdev Date: Fri, 6 Jan 2023 06:41:55 +0000 Subject: [PATCH] fix asan compile --- deps/oblib/src/common/ob_smart_call.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/oblib/src/common/ob_smart_call.h b/deps/oblib/src/common/ob_smart_call.h index f10aff3b4..efaa5932a 100644 --- a/deps/oblib/src/common/ob_smart_call.h +++ b/deps/oblib/src/common/ob_smart_call.h @@ -134,7 +134,7 @@ inline int call_with_new_stack(void * arg_, int(*func_) (void*)) } else if (!is_overflow) { \ ret = func; \ } else { \ - ret = OB_STACK_OVERFLOW; \ + ret = OB_SIZE_OVERFLOW; \ } \ ret; \ })