sscanf can cause buffer overflows (and also is pretty opaque to usage).
In Colors.cpp
Line 130
Whole function could be replaced with:
int Color::HexToInteger(String hex)
{
return strtol(hex.c_str(), NULL, 0);
}
to remove this error
Original issue reported on code.google.com by LoveOver...@gmail.com on 27 Sep 2013 at 7:55
Original issue reported on code.google.com by
LoveOver...@gmail.com
on 27 Sep 2013 at 7:55