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
In audio.c, line 114, we will call abuf = nbuf; and then in line 186-188
abuf = nbuf;
cst_free(nbuf); if (abuf != buff) cst_free(abuf);
now that abuf = nbuf, so abuf != buff is true. it will lead to a double free bug here
abuf = nbuf
abuf != buff
The text was updated successfully, but these errors were encountered:
nbuf has been assigned to a new allocated memory chunk. Please close this issue.
Sorry, something went wrong.
No branches or pull requests
In audio.c, line 114, we will call
abuf = nbuf;
and then in line 186-188
now that
abuf = nbuf
, soabuf != buff
is true. it will lead to a double free bug hereThe text was updated successfully, but these errors were encountered: