Browse Source

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.
working_subtitles
Adam Johnson 3 years ago committed by rarified
parent
commit
542711c7c0
  1. 3
      Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp

3
Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp

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

Loading…
Cancel
Save