Bug 1435911 - use a static const char array in nsPlainTextSerializer::DoOpenContainer; r=farre

We never modify this array, so it might as well live in read-only
memory.
This commit is contained in:
Nathan Froyd 2018-02-07 12:49:43 -05:00
Родитель f1ef29a421
Коммит 1dc8c21c65
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -698,7 +698,7 @@ nsPlainTextSerializer::DoOpenContainer(nsAtom* aTag)
}
else {
static char bulletCharArray[] = "*o+#";
static const char bulletCharArray[] = "*o+#";
uint32_t index = mULCount > 0 ? (mULCount - 1) : 3;
char bulletChar = bulletCharArray[index % 4];
mInIndentString.Append(char16_t(bulletChar));