diff options
Diffstat (limited to 'src/gpu/GrMemoryPool.cpp')
-rw-r--r-- | src/gpu/GrMemoryPool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrMemoryPool.cpp b/src/gpu/GrMemoryPool.cpp index adf46846c8..ee54f6ba6e 100644 --- a/src/gpu/GrMemoryPool.cpp +++ b/src/gpu/GrMemoryPool.cpp @@ -171,7 +171,7 @@ void GrMemoryPool::validate() { SkASSERT(userStart == block->fCurrPtr); } else { AllocHeader* allocData = reinterpret_cast<AllocHeader*>(userStart); - SkASSERT(allocData->fSentinal == kAssignedMarker || + SkASSERT(allocData->fSentinal == kAssignedMarker || allocData->fSentinal == kFreedMarker); SkASSERT(block == allocData->fHeader); } |