Просмотр исходного кода

6rd: Clear correct IPv6 address bits in 6rdcalc

The correct bits are now cleared in the IPv6 address as the shift
value to the correct byte in the IPv6 address was wrong. Depending
on the stack values this could result in a hanging 6rdcalc program
due to an endless loop.

Signed-off-by: Hans Dedecker <[email protected]>

SVN-Revision: 38818
Steven Barth 12 лет назад
Родитель
Сommit
b5a4fb1c95
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      package/network/ipv6/6rd/src/6rdcalc.c

+ 1 - 1
package/network/ipv6/6rd/src/6rdcalc.c

@@ -110,7 +110,7 @@ int main(int argc, const char **argv)
 
 	/* Clear remaining bits. */
 	while (v6it < 128) {
-		byte6 = (unsigned char *)(&v6.s6_addr) + (v6it >> 2);
+		byte6 = (unsigned char *)(&v6.s6_addr) + (v6it >> 3);
 		bit6 = 128 >> (v6it & 0x07);
 
 		*byte6 &= ~bit6;