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
Hi,
I am wondering if there might exist an integer underflow error:
comm_samples can be an any integer:
comm_samples
speech_tools/speech_class/EST_wave_io.cc
Line 796 in e2dcb2a
If length is zero, then data_length can be a negative integer:
length
data_length
Line 839 in e2dcb2a
So num_samples can be also a negative integer:
num_samples
Line 857 in e2dcb2a
Call to fread with the negative integer:
fread
Line 845 in e2dcb2a
memcpy with a negative number can be vulnerable:
memcpy
speech_tools/base_class/EST_Token.cc
Line 407 in e2dcb2a
Thanks for your time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I am wondering if there might exist an integer underflow error:
comm_samples
can be an any integer:speech_tools/speech_class/EST_wave_io.cc
Line 796 in e2dcb2a
If
length
is zero, thendata_length
can be a negative integer:speech_tools/speech_class/EST_wave_io.cc
Line 839 in e2dcb2a
So
num_samples
can be also a negative integer:speech_tools/speech_class/EST_wave_io.cc
Line 857 in e2dcb2a
Call to
fread
with the negative integer:speech_tools/speech_class/EST_wave_io.cc
Line 845 in e2dcb2a
memcpy
with a negative number can be vulnerable:speech_tools/base_class/EST_Token.cc
Line 407 in e2dcb2a
Thanks for your time.
The text was updated successfully, but these errors were encountered: