Don't call exit() directly here - set the exit value and jump to the
main_exit: label to ensure the programmer is released correctly. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@483 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
7a27c1840c
commit
12b9d0a8d7
|
@ -1208,7 +1208,8 @@ int main(int argc, char * argv [])
|
|||
if (rc != 0) {
|
||||
fprintf(stderr, "%s: error reading signature data, rc=%d\n",
|
||||
progname, rc);
|
||||
exit(1);
|
||||
exitrc = 1;
|
||||
goto main_exit;
|
||||
}
|
||||
|
||||
sig = avr_locate_mem(p, "signature");
|
||||
|
|
Loading…
Reference in New Issue