In usbOpenDevice(), clear the error code when returning successfully.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@705 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
6524723327
commit
0d9df51e88
|
@ -1,3 +1,9 @@
|
|||
2006-12-21 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||
|
||||
Submitted by Christian Starkjohann:
|
||||
* ser_avrdoper.c (usbOpenDevice): clear the error code when
|
||||
returning successfully.
|
||||
|
||||
2006-12-21 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||
|
||||
Submitted by Christian Starkjohann:
|
||||
|
|
|
@ -179,6 +179,7 @@ static int usbOpenDevice(union filedescriptor *fdp, int vendor, char *vendorName
|
|||
free(deviceDetails);
|
||||
if(handle != INVALID_HANDLE_VALUE){
|
||||
fdp->pfd = (void *)handle;
|
||||
errorCode = 0;
|
||||
}
|
||||
return errorCode;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue