Fix for 35196, mlk. Free the C strings! r=bruce,hyatt a=waterson

This commit is contained in:
leaf%mozilla.org 2000-05-26 23:37:23 +00:00
Родитель 4b203e621f
Коммит 759cf896c6
2 изменённых файлов: 10 добавлений и 0 удалений

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

@ -768,6 +768,11 @@ nsXBLBinding::InstallProperties(nsIContent* aBoundElement)
PR_FALSE,
&myFunc);
}
//we are done with args, time to free the strings therein
for (j = 0; j < argCount; j++) {
nsAllocator::Free(args[j]);
}
}
else if (tagName.get() == kPropertyAtom) {
// Obtain our name attribute.

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

@ -768,6 +768,11 @@ nsXBLBinding::InstallProperties(nsIContent* aBoundElement)
PR_FALSE,
&myFunc);
}
//we are done with args, time to free the strings therein
for (j = 0; j < argCount; j++) {
nsAllocator::Free(args[j]);
}
}
else if (tagName.get() == kPropertyAtom) {
// Obtain our name attribute.