mirror of
https://github.com/linux-can/can-utils.git
synced 2026-09-20 14:29:55 +02:00
Merge pull request #177 from marckleinebudde/fix-error-handling
isotpsniffer: fix error handling, "0" is a valid filedescriptor
This commit is contained in:
+3
-3
@@ -177,7 +177,7 @@ void printbuf(unsigned char *buffer, int nbytes, int color, int timestamp,
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
fd_set rdfs;
|
fd_set rdfs;
|
||||||
int s = 0, t = 0;
|
int s = -1, t = -1;
|
||||||
struct sockaddr_can addr;
|
struct sockaddr_can addr;
|
||||||
char if_name[IFNAMSIZ];
|
char if_name[IFNAMSIZ];
|
||||||
static struct can_isotp_options opts;
|
static struct can_isotp_options opts;
|
||||||
@@ -392,9 +392,9 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
if (s)
|
if (s != -1)
|
||||||
close(s);
|
close(s);
|
||||||
if (t)
|
if (t != -1)
|
||||||
close(t);
|
close(t);
|
||||||
|
|
||||||
return r;
|
return r;
|
||||||
|
|||||||
Reference in New Issue
Block a user