From db20fa00ca9880e6e661befee92e19194fa5e69a Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 5 Feb 2015 12:14:32 +0100 Subject: xmalloc: Make xrealloc() arguments conform to realloc() xrealloc() has an additional nmemb argument compared to realloc() for which it should serve as a wrapper. Since we always call with nmemb = 1, we might as well remove this argument and thus have xrealloc() conform to the realloc() function prototype. Signed-off-by: Tobias Klauser --- bpf_comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bpf_comp.c') diff --git a/bpf_comp.c b/bpf_comp.c index 8298289..3434daf 100644 --- a/bpf_comp.c +++ b/bpf_comp.c @@ -24,7 +24,7 @@ void bpf_try_compile(const char *rulefile, struct sock_fprog *bpf, uint32_t link panic("Cannot compile filter %s\n", rulefile); bpf->len = _bpf.bf_len; - bpf->filter = xrealloc(bpf->filter, 1, bpf->len * sizeof(*out)); + bpf->filter = xrealloc(bpf->filter, bpf->len * sizeof(*out)); for (i = 0, ins = _bpf.bf_insns, out = bpf->filter; i < bpf->len; ++i, ++ins, ++out) { -- cgit v1.2.3-54-g00ecf