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
any
n/a
latest master (checkout manually)
PlatformIO
Windows 10
40
no
115200
in the addStream method
addStream
bool MD5Builder::addStream(Stream & stream, const size_t maxLen)
code may return without deallocating memory, thus losing 512 bytes.
// read data and check if we got something int numBytesRead = stream.readBytes(buf, readBytes); if(numBytesRead< 1) { return false; }
should be
// read data and check if we got something int numBytesRead = stream.readBytes(buf, readBytes); if(numBytesRead< 1) { free (buf); return false; }
The text was updated successfully, but these errors were encountered:
If you edit here, it will just take a couple clicks to submit a PR.
Sorry, something went wrong.
SuGlider
Successfully merging a pull request may close this issue.
Board
any
Device Description
n/a
Hardware Configuration
n/a
Version
latest master (checkout manually)
IDE Name
PlatformIO
Operating System
Windows 10
Flash frequency
40
PSRAM enabled
no
Upload speed
115200
Description
in the
addStream
methodcode may return without deallocating memory, thus losing 512 bytes.
should be
Sketch
Debug Message
Other Steps to Reproduce
n/a
I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: