X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=module%2Fcan327.c;h=ea92daf43bca731ce07d97cf46b2f114a0eaf3fb;hb=37111be717212b8c7779978c0385393c2d51747d;hp=2d9c44e1df9d81e04b66b707c01e98c2c3a29057;hpb=11a11ae0991f8f1cc5fa3eabb2e853121436f10f;p=elmcan.git diff --git a/module/can327.c b/module/can327.c index 2d9c44e..ea92daf 100644 --- a/module/can327.c +++ b/module/can327.c @@ -440,6 +440,7 @@ static int elm327_parse_frame(struct can327 *elm, size_t len) /* The line is likely garbled anyway, so bail. * The main code will restart listening. */ + kfree_skb(skb); return -ENODATA; } @@ -458,6 +459,7 @@ static int elm327_parse_frame(struct can327 *elm, size_t len) /* This is not a well-formatted data line. * Assume it's an error message. */ + kfree_skb(skb); return -ENODATA; } @@ -465,6 +467,7 @@ static int elm327_parse_frame(struct can327 *elm, size_t len) /* The line is too short to be a valid frame hex dump. * Something interrupted the hex dump or it is invalid. */ + kfree_skb(skb); return -ENODATA; } @@ -516,6 +519,7 @@ static int elm327_parse_frame(struct can327 *elm, size_t len) * However, this will correctly drop the state machine back into * command mode. */ + kfree_skb(skb); return -ENODATA; }