Version: (using Devel) OS: Linux Installed from: Compiled sources [khtml/css/cssparser.cpp:2206] -> [khtml/css/cssparser.cpp:2084]: Array index out of bounds [khtml/css/cssparser.cpp:2228] -> [khtml/css/cssparser.cpp:2119]: Array index out of bounds At line 2205 we have this code: int colorValues[3]; if (!parseColorParameters(value, colorValues, false)) return 0; In parseColorParameters this line is bad.. colorArray[3] = ... There is a similar problem if you look at line 2228. The array index at line 2119 is out of bounds.
Thanks for the report but are you sure the analysis is correct? The parseAlpha parameter is set to false and the colorArray[3] assignment is guarded by a if(parseAlpha) check. So it'll not be executed in this case.
That is true. I didn't consider the parseAlpha.