From 086c3879245370a427d41fbbe341887360316f71 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Fri, 5 May 2017 12:46:09 +0200 Subject: [PATCH] miniwget.c: use sizeof(buf) --- miniupnpc/miniwget.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniupnpc/miniwget.c b/miniupnpc/miniwget.c index 84b392b..37cb47b 100644 --- a/miniupnpc/miniwget.c +++ b/miniupnpc/miniwget.c @@ -2,7 +2,7 @@ /* Project : miniupnp * Website : http://miniupnp.free.fr/ * Author : Thomas Bernard - * Copyright (c) 2005-2016 Thomas Bernard + * Copyright (c) 2005-2017 Thomas Bernard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. */ @@ -111,7 +111,7 @@ getHTTPResponse(int s, int * size, int * status_code) chunksize_buf[0] = '\0'; chunksize_buf_index = 0; - while((n = receivedata(s, buf, 2048, 5000, NULL)) > 0) + while((n = receivedata(s, buf, sizeof(buf), 5000, NULL)) > 0) { if(endofheaders == 0) {