Adds a new feature to ignore the defined functions in vld.ini from checking for memory leak detection.
Currently vld does not have a direct way to assess static string allocations, even though the destruction gets called at exit vld reports it as a leak. With this feature, the function name (after manual introspection, ofcourse) can be added to IgnoreFunctionsList in vld.ini and the stack containing the function will not be reported for leaks.
This is especially useful in cases where there are false positives in third party libraries and with this it can be ignored.
Adds a new feature to ignore the defined functions in
vld.ini
from checking for memory leak detection.Currently vld does not have a direct way to assess
static string
allocations, even though the destruction gets called at exit vld reports it as a leak. With this feature, the function name (after manual introspection, ofcourse) can be added toIgnoreFunctionsList
invld.ini
and the stack containing the function will not be reported for leaks.This is especially useful in cases where there are false positives in third party libraries and with this it can be ignored.