Merge "Bound touch and tool axes lengths below at 0" into klp-dev

This commit is contained in:
Michael Wright
2013-08-15 19:26:43 +00:00
committed by Android (Google) Code Review

View File

@@ -1285,6 +1285,9 @@ protected:
if (haveSizeBias) {
*outSize += sizeBias;
}
if (*outSize < 0) {
*outSize = 0;
}
}
} mCalibration;