mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-27 14:35:27 +00:00
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:
@@ -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");
|
||||
|
Reference in New Issue
Block a user