diff --git a/core/templates/safe_refcount.h b/core/templates/safe_refcount.h index cdc9908a5fb..91a34ecd548 100644 --- a/core/templates/safe_refcount.h +++ b/core/templates/safe_refcount.h @@ -249,7 +249,7 @@ public: } _ALWAYS_INLINE_ T conditional_increment() { - if (value != 0) { + if (value == 0) { return 0; } else { return ++value;