slcanpty: declare command buffer static

ASCII command buffer char buf[200] must be declared as static,
because it holds incomplete commands between pty2can() calls.
Without static it is not guaranteed, that buf retains the same
data between calls.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
Yegor Yefremov
2014-01-16 16:31:50 +01:00
committed by Marc Kleine-Budde
parent 31936b5a17
commit c7aa0b7051
+1 -1
View File
@@ -68,7 +68,7 @@ int pty2can(int pty, int socket, struct can_filter *fi,
{
int nbytes;
char cmd;
char buf[200];
static char buf[200];
char replybuf[10]; /* for answers to received commands */
int ptr;
struct can_frame frame;