Forum Migration Notice
Update (2026-01-21): The user forums are now in read-only mode pending the data migration.

Update (2026-01-12): The user forums will be put into read-only mode on the 21st of January, 00:00 CET, to prepare for the data migration.

We're transitioning to a more modern community platform by beginning of next year. Learn about the upcoming changes and what to expect.

RAPID memory leak?

I think there is a RAPID memory leak with the following when the record being searched for does not exist.  Maybe someone can verify this and eventually fix?

RapidSymbolSearchProperties props = RapidSymbolSearchProperties.CreateDefaultForData(true);
props.LocalSymbols = false;

List<RapidSymbol> symbolsFound = new List<RapidSymbol>();
try
{
// This causes a leak in RAPID memory if the "myundefinedrecord" record isn't installed
symbolsFound.AddRange(this.Task.SearchRapidSymbol(props, "myundefinedrecord", ""));
}
catch 
{
Controller.ReleaseUnmanagedResources();
return; 
}