You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For certain invalid commands CF will increment the valid counter. For certain valid commands CF will increment the invalid counter. The CF_TsnChanAction function does not appear to correctly interpret the return status from certain sub-functions that return the count of matched transactions. It assumes a non-zero return value is failure, but actually it is the count of transaction matches.
This can be seen with the following command opcodes: ABANDON, CANCEL, SUSPEND, RESUME
The text was updated successfully, but these errors were encountered:
For commands that rely on CF_TsnChanAction(), this is documented as
returning a count of the number of transactions affected. Therefore,
a return value >0 means that the operation was successful (or at least
it matched something), and a return value <=0 means failure.
- Fixes a case where the function did not adhere to its documented return
- Fixes passing the result to CF_CmdCond() which needs a translation.
For certain invalid commands CF will increment the valid counter. For certain valid commands CF will increment the invalid counter. The CF_TsnChanAction function does not appear to correctly interpret the return status from certain sub-functions that return the count of matched transactions. It assumes a non-zero return value is failure, but actually it is the count of transaction matches.
This can be seen with the following command opcodes: ABANDON, CANCEL, SUSPEND, RESUME
The text was updated successfully, but these errors were encountered: