mirror of
https://github.com/curl/curl.git
synced 2026-08-03 04:40:29 +03:00
We use this ZERO_NULL to avoid picky compiler warnings,
when assigning a NULL pointer to a function pointer var.
This commit is contained in:
parent
5360f88393
commit
92433e596b
11 changed files with 106 additions and 112 deletions
28
lib/url.c
28
lib/url.c
|
|
@ -175,14 +175,6 @@ static void flush_cookies(struct SessionHandle *data, int cleanup);
|
|||
|
||||
#define MAX_PIPELINE_LENGTH 5
|
||||
|
||||
/*
|
||||
* We use this ZERO_NULL to avoid picky compiler warnings,
|
||||
* when assigning a NULL pointer to a function pointer var.
|
||||
*/
|
||||
|
||||
#define ZERO_NULL 0
|
||||
|
||||
|
||||
#ifndef USE_ARES
|
||||
/* not for ares builds */
|
||||
|
||||
|
|
@ -268,16 +260,16 @@ static const struct Curl_handler * const protocols[] = {
|
|||
|
||||
static const struct Curl_handler Curl_handler_dummy = {
|
||||
"<no protocol>", /* scheme */
|
||||
NULL, /* setup_connection */
|
||||
NULL, /* do_it */
|
||||
NULL, /* done */
|
||||
NULL, /* do_more */
|
||||
NULL, /* connect_it */
|
||||
NULL, /* connecting */
|
||||
NULL, /* doing */
|
||||
NULL, /* proto_getsock */
|
||||
NULL, /* doing_getsock */
|
||||
NULL, /* disconnect */
|
||||
ZERO_NULL, /* setup_connection */
|
||||
ZERO_NULL, /* do_it */
|
||||
ZERO_NULL, /* done */
|
||||
ZERO_NULL, /* do_more */
|
||||
ZERO_NULL, /* connect_it */
|
||||
ZERO_NULL, /* connecting */
|
||||
ZERO_NULL, /* doing */
|
||||
ZERO_NULL, /* proto_getsock */
|
||||
ZERO_NULL, /* doing_getsock */
|
||||
ZERO_NULL, /* disconnect */
|
||||
0, /* defport */
|
||||
0 /* protocol */
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue