diff options
| author | Jo-Philipp Wich | 2018-04-19 13:13:25 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2018-04-20 11:17:28 +0000 |
| commit | 66a9bad1a73bc33c4c5a9a00de8dc8ad35bdfaf1 (patch) | |
| tree | 3a159017d329607fbcc9dd3013aa7f07cefcd49f | |
| parent | 24231622340bf563cc89d2ae384a043a59cb994b (diff) | |
| download | rpcd-66a9bad1a73bc33c4c5a9a00de8dc8ad35bdfaf1.tar.gz | |
uci: fix memory leak in rpc_uci_apply_timeout()
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
| -rw-r--r-- | uci.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1373,6 +1373,8 @@ rpc_uci_apply_timeout(struct uloop_timeout *t) return; rpc_uci_do_rollback(apply_ctx, &gl); + + globfree(&gl); } static int |