02-09-2018 04:42 AM
i use cvi for execute a seqFile but after i exite the application i get a warning message : "References to PropertyObjects were not released properly, but a list is not available. "
i close the sequence before exite and i discard all the TSUIObj but the same warrning allways
Solved! Go to Solution.
02-09-2018 07:42 AM
This means that the TestStand engine detected a propertyObject leak on shutdown - an example of this is creating a new sequence file, or loading an existing one without ever calling ReleaseSequenceFileEx.
You might be able to track down what CAObjHandle is being leaked using the Resource Tracking Window:
You could also see this if your sequence itself, or one of it's code modules has a reference leak - try running it from the sequence editor and see if you get the same dialog.
Lastly, you might also get this warning if the engine isn't being shut down properly.
Hope this helps!
Trent