X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;ds=sidebyside;f=src%2Fcygwin%2Fdevice.c;h=c23d02d7de827aa26f4c59660f3a506f57e249a2;hb=2327d3f6eb5982bcc922ff1ab1ec436ba6aeffdc;hp=3be59ce9d04c868c6b11fac57654235c56347a20;hpb=de78d79db84c486afcc353884ec1770866beb653;p=tinc diff --git a/src/cygwin/device.c b/src/cygwin/device.c index 3be59ce9..c23d02d7 100644 --- a/src/cygwin/device.c +++ b/src/cygwin/device.c @@ -38,7 +38,7 @@ int device_fd = -1; static HANDLE device_handle = INVALID_HANDLE_VALUE; char *device = NULL; char *iface = NULL; -char *device_info = NULL; +static char *device_info = NULL; static int device_total_in = 0; static int device_total_out = 0; @@ -227,6 +227,9 @@ void close_device(void) CloseHandle(device_handle); kill(reader_pid, SIGKILL); + + free(device); + free(iface); } bool read_packet(vpn_packet_t *packet)