Hi,
I analysed my application with Tizen Dynamic Analyzer and I found a resource leak in my code:
I create File like this:
File file;
result r = file.Construct(strFilePath, "w");
How to prevent resource leak?
PS. When I construct file with parameter "r" instead of "w" resource leak doesn't fire.
Thanks
Kamil