1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-04-19 21:22:15 +03:00

Fixes issue #10 where the library would crash on Intel Galileo and Edison.

This commit is contained in:
Adrian McEwen 2015-05-05 22:56:12 +01:00
parent 522108f64e
commit 4bb288dd86

View File

@ -41,7 +41,7 @@ void HttpClient::resetState()
iStatusCode = 0;
iContentLength = 0;
iBodyLengthConsumed = 0;
iContentLengthPtr = 0;
iContentLengthPtr = kContentLengthPrefix;
iHttpResponseTimeout = kHttpResponseTimeout;
}