summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/computation/mkql_computation_node_impl.cpp
diff options
context:
space:
mode:
authoratarasov5 <[email protected]>2025-07-08 08:22:31 +0300
committeratarasov5 <[email protected]>2025-07-08 08:39:34 +0300
commit9ea5796fb72dfc72db92cc205a6ef5b9099dfbe0 (patch)
tree7463b181b34de9f047627eb52a2f2ef812a4af8d /yql/essentials/minikql/computation/mkql_computation_node_impl.cpp
parent4985bee7f78371eae4f89d2d010143ab71912a8e (diff)
YQL-19536: Block ifpresent
commit_hash:15146ac1817e0abc0483b2c138207daf3b63fdd5
Diffstat (limited to 'yql/essentials/minikql/computation/mkql_computation_node_impl.cpp')
-rw-r--r--yql/essentials/minikql/computation/mkql_computation_node_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/minikql/computation/mkql_computation_node_impl.cpp b/yql/essentials/minikql/computation/mkql_computation_node_impl.cpp
index 1f3f51eb231..a5c3bf13623 100644
--- a/yql/essentials/minikql/computation/mkql_computation_node_impl.cpp
+++ b/yql/essentials/minikql/computation/mkql_computation_node_impl.cpp
@@ -40,8 +40,8 @@ TUnboxedImmutableComputationNode::TUnboxedImmutableComputationNode(TMemoryUsageI
}
TUnboxedImmutableComputationNode::~TUnboxedImmutableComputationNode() {
- MKQL_MEM_RETURN(MemInfo_, this, sizeof(*this));
TlsAllocState->UnlockObject(UnboxedValue_);
+ MKQL_MEM_RETURN(MemInfo_, this, sizeof(*this));
}
NUdf::TUnboxedValue TUnboxedImmutableComputationNode::GetValue(TComputationContext& compCtx) const {