Bug 1390428 (part 8) - Remove nsXPIDLCString use in NullCString(). r=erahm.

This change makes NullCString() work the same way as NullString().

--HG--
extra : rebase_source : 3835cd75f1cf95c9d0884cb9a73250123129dd07
This commit is contained in:
Nicholas Nethercote 2017-08-17 14:25:23 +10:00
Родитель 4b042e431f
Коммит 6f90531fbd
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1286,7 +1286,7 @@ NullString()
const nsCString&
NullCString()
{
static const nsXPIDLCString sNull;
static const nsCString sNull(mozilla::detail::StringDataFlags::VOIDED);
return sNull;
}