diff options
| author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-08-04 12:53:28 +0200 | 
|---|---|---|
| committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-08-04 17:17:49 +0200 | 
| commit | 139001b60b32e756e947d6e3a55767be9063029d (patch) | |
| tree | 45a23543682a69151622cda6100eb1656c64c773 /src/ipcpd/shim-udp | |
| parent | c9cffcf863b23e75ccb6d7800ac0d48fd1612259 (diff) | |
| download | ouroboros-139001b60b32e756e947d6e3a55767be9063029d.tar.gz ouroboros-139001b60b32e756e947d6e3a55767be9063029d.zip  | |
ipcpd: Fix memory leaks
ipcp-data was not correctly destroyed.
Diffstat (limited to 'src/ipcpd/shim-udp')
| -rw-r--r-- | src/ipcpd/shim-udp/main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/shim-udp/main.c b/src/ipcpd/shim-udp/main.c index 1b0bec07..49fd7772 100644 --- a/src/ipcpd/shim-udp/main.c +++ b/src/ipcpd/shim-udp/main.c @@ -1611,7 +1611,7 @@ int main(int argc, char * argv[])          shim_ap_fini(); -        free(_ipcp->data); +        ipcp_data_destroy(_ipcp->data);          free(_ipcp->ops);          free(_ipcp);  | 
