Check argc. b=330900 r=kengert sr=jst

This commit is contained in:
dbaron%dbaron.org 2006-03-24 06:51:24 +00:00
Родитель 1455501214
Коммит d62ddfa0b3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1449,7 +1449,7 @@ nsCrypto::GenerateCRMFRequest(nsIDOMCRMFObject** aReturn)
/*
* Get all of the parameters.
*/
if (((argc-5) % 3) != 0) {
if (argc < 5 || ((argc-5) % 3) != 0) {
JS_ReportError(cx, "%s", "%s%s\n", JS_ERROR,
"incorrect number of parameters");
return NS_ERROR_FAILURE;