Bug in kis_imagepipe_brush.cc:98

Christoph Bartoschek bartoschek at or.uni-bonn.de
Thu Mar 23 14:43:11 CET 2006


The line:

if (rankIndex < 0 && rankIndex > dim) {

should be

if (rankIndex < 0 or rankIndex > dim) {

or for the old-fashioned ones

if (rankIndex < 0 || rankIndex > dim) {


Christoph Bartoschek


More information about the kimageshop mailing list