Commit b95d28c3 authored by Phil Sutter's avatar Phil Sutter Committed by Stephen Hemminger

misc/ss: add missing fclose() calls

Signed-off-by: default avatarPhil Sutter <phil@nwl.cc>
parent 532ca40a
...@@ -3025,6 +3025,7 @@ static int packet_show_line(char *buf, const struct filter *f, int fam) ...@@ -3025,6 +3025,7 @@ static int packet_show_line(char *buf, const struct filter *f, int fam)
static int packet_show(struct filter *f) static int packet_show(struct filter *f)
{ {
FILE *fp; FILE *fp;
int rc = 0;
if (!filter_af_get(f, AF_PACKET) || !(f->states & (1 << SS_CLOSE))) if (!filter_af_get(f, AF_PACKET) || !(f->states & (1 << SS_CLOSE)))
return 0; return 0;
...@@ -3036,9 +3037,10 @@ static int packet_show(struct filter *f) ...@@ -3036,9 +3037,10 @@ static int packet_show(struct filter *f)
if ((fp = net_packet_open()) == NULL) if ((fp = net_packet_open()) == NULL)
return -1; return -1;
if (generic_record_read(fp, packet_show_line, f, AF_PACKET)) if (generic_record_read(fp, packet_show_line, f, AF_PACKET))
return -1; rc = -1;
return 0; fclose(fp);
return rc;
} }
static int netlink_show_one(struct filter *f, static int netlink_show_one(struct filter *f,
...@@ -3215,6 +3217,7 @@ static int netlink_show(struct filter *f) ...@@ -3215,6 +3217,7 @@ static int netlink_show(struct filter *f)
netlink_show_one(f, prot, pid, groups, 0, 0, 0, rq, wq, sk, cb); netlink_show_one(f, prot, pid, groups, 0, 0, 0, rq, wq, sk, cb);
} }
fclose(fp);
return 0; return 0;
} }
......
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