Bug 1236571 follow-up - fix bustage on a CLOSED TREE; r=me

This commit is contained in:
Nathan Froyd 2016-01-05 16:36:11 -05:00
Родитель 83aec61b67
Коммит 8070cbc00f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3250,7 +3250,7 @@ ReadSourceFromFilename(JSContext* cx, const char* filename, char16_t** src, size
return NS_ERROR_FILE_TOO_BIG;
// Allocate an internal buf the size of the file.
auto buf = MakeUniqueFallible<unsigned char>(rawLen);
auto buf = MakeUniqueFallible<unsigned char[]>(rawLen);
if (!buf)
return NS_ERROR_OUT_OF_MEMORY;