You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
416 B

Security Bugfix
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0577
--- common.c.orig 1999-06-15 18:24:19.000000000 -0300
+++ common.c 2003-07-11 14:28:13.000000000 -0300
@@ -123,7 +123,7 @@
return FALSE;
if(!((head>>17)&3))
return FALSE;
- if( ((head>>12)&0xf) == 0xf)
+ if(((head>>12)&0xf) == 0xf || ((head>>12)&0xf) == 0)
return FALSE;
if( ((head>>10)&0x3) == 0x3 )
return FALSE;