Commit 1a5bd776 authored by Stephen Hemminger's avatar Stephen Hemminger

In police, fix uninitialized "overhead" variable.

Bug introduced by myself in an earlier patch series.
Signed-off-by: default avatarJesper Dangaard Brouer <hawk@comx.dk>
parent ae9b671d
......@@ -133,7 +133,7 @@ int act_parse_police(struct action_util *a,int *argc_p, char ***argv_p, int tca_
__u32 avrate = 0;
int presult = 0;
unsigned buffer=0, mtu=0, mpu=0;
unsigned short overhead;
unsigned short overhead=0;
int Rcell_log=-1, Pcell_log = -1;
struct rtattr *tail;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment