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
filter_audio/filter_audio.c
Lines 320 to 321 in ada2f4f
memset tries to write twice the bytes of the actual buffer size
A/libc: FORTIFY: memset: prevented 640-byte write into 320-byte buffer
should say:
memset(temp, 0, nsx_samples*sizeof(int16_t));
thanks to @kaefert for helping me find this
The text was updated successfully, but these errors were encountered:
https://github.com/isotoxin/filter_audio/blob/37e81bcc934d3556ca52e8dfbd0a2396c868a684/filter_audio.c#L331
fixed here
isotoxin@4adf0d2
Sorry, something went wrong.
Will this get merged?
No branches or pull requests
filter_audio/filter_audio.c
Lines 320 to 321 in ada2f4f
memset tries to write twice the bytes of the actual buffer size
should say:
thanks to @kaefert for helping me find this
The text was updated successfully, but these errors were encountered: