зеркало из https://github.com/mozilla/gecko-dev.git
Bug 717059 - Fix nsProfiler::GetFeatures() to handle zero length and remove warning. r=jmuizelaar
This commit is contained in:
Родитель
dba7c91301
Коммит
e3b1bdecdd
|
@ -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*)));
|
||||
|
|
Загрузка…
Ссылка в новой задаче