2005-04-15 Dan Williams <dcbw@redhat.com>

Patches from Tom Parker:
	- Fix memleaks
	- Join with worker thread rather than polling for its exit

	Patch from Bill Moss:
	- Cull duplicate ESSIDs from the scan list, taking highest strength AP


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@573 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2005-04-15 20:00:28 +00:00
parent b6215ff296
commit 7337e8132a
9 changed files with 145 additions and 33 deletions

View File

@@ -569,7 +569,7 @@ nm_netlink_monitor_event_handler (GIOChannel *channel,
NmNetlinkMonitor *monitor)
{
GError *error;
gchar *received_bytes;
gchar *received_bytes=NULL;
gboolean processing_is_done;
gsize num_received_bytes;
guint num_bytes_to_process;
@@ -711,6 +711,7 @@ nm_netlink_monitor_event_handler (GIOChannel *channel,
g_free (interface_name);
}
}
g_free(received_bytes);
return TRUE;
}