X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=src%2Fcygwin%2Fdevice.c;fp=src%2Fcygwin%2Fdevice.c;h=97b2a38d0c60ef327317efec5359d032c9e3bd58;hp=6b0dbea4819f782da832be2dd0b2dc86f901c5bb;hb=08aabbf9317806bc50a9a6693ca866c8936ce26b;hpb=551cd19406a560d0d206bff5b4e9da064ec222b6 diff --git a/src/cygwin/device.c b/src/cygwin/device.c index 6b0dbea4..97b2a38d 100644 --- a/src/cygwin/device.c +++ b/src/cygwin/device.c @@ -1,7 +1,7 @@ /* device.c -- Interaction with Windows tap driver in a Cygwin environment Copyright (C) 2002-2005 Ivo Timmermans, - 2002-2006 Guus Sliepen + 2002-2009 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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; @@ -225,6 +225,9 @@ void close_device(void) { CloseHandle(device_handle); kill(reader_pid, SIGKILL); + + free(device); + free(iface); } bool read_packet(vpn_packet_t *packet) {