From a1e2e26a3f99fec8760eb3d593432d416765550a Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Sat, 29 Apr 2023 22:39:26 +0000 Subject: [PATCH] Fix warning --- http-response-bodies.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-response-bodies.c b/http-response-bodies.c index 101dbd1..1ac302d 100644 --- a/http-response-bodies.c +++ b/http-response-bodies.c @@ -63,7 +63,7 @@ int main(int argc, char* argv[]) { char* m1; char* eoh; long int nscan; - size_t bytes_read; + size_t bytes_read = 0; size_t length; bool html_fake_base = false; char* url = NULL; // Warning, pointer is only valid within the STATE_HEADERS block below.