From fcc3752bcc378df72951a0067170af480f954ae3 Mon Sep 17 00:00:00 2001 From: bd_ Date: Fri, 8 Mar 2024 00:59:13 -0800 Subject: [PATCH] fix: double free message from armature lock (#745) Closes: #741 --- Runtime/ArmatureAwase/ArmatureLockOperator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/ArmatureAwase/ArmatureLockOperator.cs b/Runtime/ArmatureAwase/ArmatureLockOperator.cs index b4e113d1..510d0cf3 100644 --- a/Runtime/ArmatureAwase/ArmatureLockOperator.cs +++ b/Runtime/ArmatureAwase/ArmatureLockOperator.cs @@ -212,7 +212,7 @@ namespace nadena.dev.modular_avatar.core.armature_lock { // Initial setup failed; roll things back job.IsValid = false; - RemoveJob(job); + job.Dispose(); } }