diff options
| -rw-r--r-- | libs/hwui/hwui/Bitmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/hwui/Bitmap.cpp b/libs/hwui/hwui/Bitmap.cpp index be0b22ee8d31..da63c1826600 100644 --- a/libs/hwui/hwui/Bitmap.cpp +++ b/libs/hwui/hwui/Bitmap.cpp @@ -307,7 +307,7 @@ void Bitmap::reconfigure(const SkImageInfo& newInfo, size_t rowBytes, SkColorTab } mRowBytes = rowBytes; if (mColorTable.get() != ctable) { - mColorTable.reset(ctable); + mColorTable.reset(SkSafeRef(ctable)); } // Need to validate the alpha type to filter against the color type |