qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 02/11] curl: change magic number to macro


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH v2 02/11] curl: change magic number to macro
Date: Tue, 14 May 2013 10:04:31 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

On Tue, May 14, 2013 at 10:26:21AM +0800, Fam Zheng wrote:
> @@ -70,7 +70,8 @@ typedef struct CURLState
>      size_t buf_start;
>      size_t buf_off;
>      size_t buf_len;
> -    char range[128];
> +#define CURL_RANGE_SIZE 128
> +    char range[CURL_RANGE_SIZE];
>      char errmsg[CURL_ERROR_SIZE];
>      char in_use;
>  } CURLState;
> @@ -567,7 +568,7 @@ static void curl_readv_bh_cb(void *p)
>      state->orig_buf = g_malloc(state->buf_len);
>      state->acb[0] = acb;
>  
> -    snprintf(state->range, 127, "%zd-%zd", start, end);
> +    snprintf(state->range, CURL_RANGE_SIZE - 1, "%zd-%zd", start, end);

Simpler solution: sizeof(state->range) - 1

Then you don't need to introduce "CURL_RANGE_SIZE" which risks
conflicting with libcurl's namespace.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]