Forráskód Böngészése

ppp_generic: Help GCC see that 'flen' is always initialized.

It's too stupid to see that we always set flen to something
before we use it in ppp_mp_explode():

drivers/net/ppp_generic.c: In function 'ppp_push':
drivers/net/ppp_generic.c:1314: warning: 'flen' may be used uninitialized in this function
drivers/net/ppp_generic.c:1314: note: 'flen' was declared here

This started warning after commit a53a8b56827cc429c6d9f861ad558beeb5f6103f
("ppp: fix lost fragments in ppp_mp_explode() (resubmit)")

So just put an explicit unconditional initialization there to
hush it up.

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 16 éve
szülő
commit
886f9fe683
1 módosított fájl, 1 hozzáadás és 0 törlés
  1. 1 0
      drivers/net/ppp_generic.c

+ 1 - 0
drivers/net/ppp_generic.c

@@ -1431,6 +1431,7 @@ static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
 		*otherwise divide it according to the speed
 		*otherwise divide it according to the speed
 		*of the channel we are going to transmit on
 		*of the channel we are going to transmit on
 		*/
 		*/
+		flen = len;
 		if (nfree > 0) {
 		if (nfree > 0) {
 			if (pch->speed == 0) {
 			if (pch->speed == 0) {
 				flen = totlen/nfree	;
 				flen = totlen/nfree	;