You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the EthernetClient::connect(IPAddress ip, uint16_t port) function there is memory allocated for the _tcp_client variable. In the EthernetClient::stop() the allocated memory is not freed up. Am I missing some part where allocated memory is freed up after usage or does this have an other specific reason?
I stumbled over that issue by trying to keep me footprint as small as possible and only generating a EthernetClient object if needed and closing it afterwards.
The text was updated successfully, but these errors were encountered:
In the
EthernetClient::connect(IPAddress ip, uint16_t port)
function there is memory allocated for the_tcp_client
variable. In theEthernetClient::stop()
the allocated memory is not freed up. Am I missing some part where allocated memory is freed up after usage or does this have an other specific reason?I stumbled over that issue by trying to keep me footprint as small as possible and only generating a EthernetClient object if needed and closing it afterwards.
The text was updated successfully, but these errors were encountered: