Skip to content
This repository has been archived by the owner on Jan 10, 2021. It is now read-only.

Commit

Permalink
Fix corrupt heap (array index out of bounds).
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Dec 13, 2019
1 parent af2fcb4 commit d499bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ESP32_MailClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3650,7 +3650,7 @@ void ESP32_MailClient::send_base64_encode_mime_file(WiFiClient *client, File fil
if (!file)
return;

size_t chunkSize = 912;
size_t chunkSize = 936;
size_t byteAdd = 0;
size_t byteSent = 0;

Expand Down

0 comments on commit d499bdf

Please sign in to comment.