initialize buffer to empty

documentation
Kenneth Barbour 2018-11-29 11:24:25 -05:00
parent 4525c4cbac
commit a2d06559f4
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ TEST_CASE("Copy constructor", "[HttpHeaders]")
TEST_CASE("HttpHeaders printTo", "[HttpHeaders]")
{
HttpHeaders h;
uint8_t buff[100];
uint8_t buff[100] = {};
Buffer buffer(buff, 100);
buffer.print(h);