mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-05-04 20:46:11 +02:00
CLEANUP: Use IST_NULL whenever possible
Refactoring performed with the following Coccinelle patch:
@@
@@
- ist2(NULL, 0)
+ IST_NULL
This commit is contained in:
parent
92c696e663
commit
68a088d851
@ -818,7 +818,7 @@ static int smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const
|
||||
if (args->type == ARGT_STR) {
|
||||
name = ist2(args->data.str.area, args->data.str.data);
|
||||
} else {
|
||||
name = ist2(NULL, 0);
|
||||
name = IST_NULL;
|
||||
}
|
||||
|
||||
ctx.blk = NULL;
|
||||
@ -954,7 +954,7 @@ static int smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const c
|
||||
if (args->type == ARGT_STR) {
|
||||
name = ist2(args->data.str.area, args->data.str.data);
|
||||
} else {
|
||||
name = ist2(NULL, 0);
|
||||
name = IST_NULL;
|
||||
}
|
||||
|
||||
ctx.blk = NULL;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user