diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pathops/SkPathOpsTSect.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pathops/SkPathOpsTSect.h b/src/pathops/SkPathOpsTSect.h index fbfb8c138f..f3402daa67 100644 --- a/src/pathops/SkPathOpsTSect.h +++ b/src/pathops/SkPathOpsTSect.h @@ -992,6 +992,9 @@ SkTSpan<TCurve, OppCurve>* SkTSect<TCurve, OppCurve>::boundsMax() const { template<typename TCurve, typename OppCurve> bool SkTSect<TCurve, OppCurve>::coincidentCheck(SkTSect<OppCurve, TCurve>* sect2) { SkTSpan<TCurve, OppCurve>* first = fHead; + if (!first) { + return false; + } SkTSpan<TCurve, OppCurve>* last, * next; do { int consecutive = this->countConsecutiveSpans(first, &last); |