2006-01-12 Dan Williams <dcbw@redhat.com>

* src/nm-device-802-11-wireless.c
		- (supplicant_exec): ensure GError is correctly initialized
			Reported by Diego González (gnome.org #326708)


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1322 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2006-01-12 12:51:06 +00:00
parent 9972ef7fff
commit 771ec68c81
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-01-12 Dan Williams <dcbw@redhat.com>
* src/nm-device-802-11-wireless.c
- (supplicant_exec): ensure GError is correctly initialized
Reported by Diego González (gnome.org #326708)
2006-01-11 Robert Love <rml@novell.com>
* src/nm-device-802-3-ethernet.c: In case local copies of glibc do not

View file

@ -2378,7 +2378,7 @@ supplicant_exec (NMDevice80211Wireless *self)
{
gboolean success = FALSE;
char * argv[4];
GError * error;
GError * error = NULL;
GPid pid = -1;
argv[0] = WPA_SUPPLICANT_BINARY;