ref: 9b355acf495a70ce2767ffae671fe2ae22521a2e
parent: e9e9983ebccd77f991af91b1010b179f556148ff
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Sat Jul 2 04:56:37 EDT 2022
strip: Fix error handling in doit() It was printing always "cannot strip it".
--- a/src/cmd/strip.c
+++ b/src/cmd/strip.c
@@ -44,7 +44,7 @@
}
if ((src = fopen(fname, "rb")) == NULL) {
error("opening src file");
- goto err0;
+ return;
}
if ((type = objtype(src, NULL)) < 0) {
error("getting object type");
@@ -99,8 +99,6 @@
delobj(obj);
err1:
fclose(src);
-err0:
- error("cannot strip it");
}
static void