We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
netsurf/libdom uses a ref counter to track node and string usage an cleanup memory once the ref count reach 0.
see:
We have to ensure our usages of strings and nodes unref correctly once they are done.
To help detect string leak, we can USS a leak detector the same way netsurf does in its example: https://github.com/Browsercore/libdom/blob/master/examples/dom-structure-dump.c#L372
The text was updated successfully, but these errors were encountered:
No branches or pull requests
netsurf/libdom uses a ref counter to track node and string usage an cleanup memory once the ref count reach 0.
see:
We have to ensure our usages of strings and nodes unref correctly once they are done.
To help detect string leak, we can USS a leak detector the same way netsurf does in its example: https://github.com/Browsercore/libdom/blob/master/examples/dom-structure-dump.c#L372
The text was updated successfully, but these errors were encountered: