mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 10:37:41 -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:
@ -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();
|
||||||
|
Reference in New Issue
Block a user