Bug 819791 - Part 0: Deserialize fallibly in IPCMessageUtils.h. r=cjones

Comments in the code are asking for us to deserialize fallibly; it looks
like we just forgot to change this when we made nsTArray infallible.
This commit is contained in:
Justin Lebar 2012-12-18 20:16:06 -05:00
Родитель 3dfc80459c
Коммит 63aae26bf9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -390,7 +390,7 @@ struct ParamTraits<InfallibleTArray<E> > :
// deserialize the array fallibly, but return an InfallibleTArray
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
{
nsTArray<E> temp;
FallibleTArray<E> temp;
if (!ReadParam(aMsg, aIter, &temp))
return false;