In tau_tti.c funciton tau_getOwnIds
It is not correct to check:
if (appHandle->pTTDB->noOfCachedCst == 0)
Can be any cst in the cach it may not be own cst that we need. Depends on previous made requests.
Suggested change to
if(appHandle->pTTDB->cstInfo[0] == NULL) / own cst info is always stored on entry 0 /
Suggested change implemented. To be tested.
Tested OK