Summary: Fix walking the list of HID matches
When walking the list of matches returned by hid_enumerate(), actually proceed to the next element. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1383 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
b3ee7ad686
commit
e1ce7be101
|
@ -115,6 +115,7 @@ static int usbhid_open(char * port, union pinfo pinfo, union filedescriptor *fd)
|
|||
}
|
||||
avrdude_message(MSG_DEBUG, "%s: usbhid_open(): serial number doesn't match\n",
|
||||
progname);
|
||||
walk = walk->next;
|
||||
}
|
||||
if (walk == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue