2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix misplaced return value.

The "wait for server response" return value was short-circuiting the
"already done" value. The previous commit fixed always needing a new
instance, exposing this problem.
This commit is contained in:
2021-10-17 14:48:23 -04:00
parent d7c999c8f3
commit c65b062e0f

View File

@ -4964,11 +4964,12 @@ UInt8 VaultAgeFindOrCreateChildAgeLink(
nil, nil,
p p
); );
retval = FALSE;
} }
temp->DecRef(); temp->DecRef();
rvnChildAges->DecRef(); rvnChildAges->DecRef();
retval = FALSE;
} }
rvnParentInfo->DecRef(); rvnParentInfo->DecRef();