In case fillPassedSamples find zero passed negatives and leafFA is achieved, function updateTrainingSet will return false and print misleading information, this PR fix the case.
intproNumNeg=cvRound((((double)numNeg)*((double)posCount))/numPos);// apply only a fraction of negative samples. double is required since overflow is possible
intproNumNeg=cvRound((((double)numNeg)*((double)posCount))/numPos);// apply only a fraction of negative samples. double is required since overflow is possible