aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-04-29 09:31:21 -0400
committerLibravatar netblue30 <netblue30@protonmail.com>2022-04-29 09:31:21 -0400
commit9ec6288674f7473138038128c232dd198b6f509a (patch)
treedae9767b8675fc4e57c2278f50aa4dbceb53c9d3
parentfix firemon, speed-up (diff)
parenthostnames.c: fix mismatched dealloc (fclose -> pclose) (diff)
downloadfirejail-9ec6288674f7473138038128c232dd198b6f509a.tar.gz
firejail-9ec6288674f7473138038128c232dd198b6f509a.tar.zst
firejail-9ec6288674f7473138038128c232dd198b6f509a.zip
Merge branch 'master' of ssh://github.com/netblue30/firejail
-rw-r--r--src/fnettrace/hostnames.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fnettrace/hostnames.c b/src/fnettrace/hostnames.c
index dd92070bf..71ce672b5 100644
--- a/src/fnettrace/hostnames.c
+++ b/src/fnettrace/hostnames.c
@@ -50,7 +50,7 @@ char *retrieve_hostname(uint32_t ip) {
50 } 50 }
51 } 51 }
52 } 52 }
53 fclose(fp); 53 pclose(fp);
54 return rv; 54 return rv;
55 } 55 }
56 else 56 else