Merge commit 'origin/master'

This commit is contained in:
Ondrej Zajicek 2011-04-29 19:03:19 +02:00
commit 5964569c23

View file

@ -312,6 +312,12 @@ ospf_rx_hook(sock *sk, int size)
}
int osize = ntohs(ps->length);
if ((unsigned) osize < sizeof(struct ospf_packet))
{
log(L_ERR "%s%I - too low value in size field (%u bytes)", mesg, sk->faddr, osize);
return 1;
}
if ((osize > size) || ((osize % 4) != 0))
{
log(L_ERR "%s%I - size field does not match (%d/%d)", mesg, sk->faddr, osize, size);