Bug 717059 - Fix nsProfiler::GetFeatures() to handle zero length and remove warning. r=jmuizelaar

This commit is contained in:
Benoit Girard 2012-01-14 10:59:09 -05:00
Родитель dba7c91301
Коммит e3b1bdecdd
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -124,7 +124,9 @@ nsProfiler::GetFeatures(PRUint32 *aCount, char ***aFeatures)
return NS_OK;
}
while (features[++len]);
while (features[len]) {
len++;
}
char **featureList = static_cast<char **>
(nsMemory::Alloc(len * sizeof(char*)));