Cosmetic nit-picks: respect 80-column limit, use NULL, not 0, for ptr init.

This commit is contained in:
brendan%mozilla.org 2002-09-18 18:44:47 +00:00
Родитель 49697d7eb5
Коммит d58abba5ce
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -176,7 +176,8 @@ exn_newPrivate(JSContext *cx, JSErrorReport *report)
if (report->ucmessage != NULL) {
capacity = js_strlen(report->ucmessage) + 1;
newReport->ucmessage = (const jschar *)JS_malloc(cx, capacity * sizeof(jschar));
newReport->ucmessage = (const jschar *)
JS_malloc(cx, capacity * sizeof(jschar));
if (!newReport->ucmessage)
goto error;
js_strncpy((jschar *)newReport->ucmessage, report->ucmessage, capacity);
@ -312,7 +313,7 @@ static struct JSExnSpec exceptions[] = {
{ JSEXN_ERR, js_SyntaxError_str, SyntaxError },
{ JSEXN_ERR, js_TypeError_str, TypeError },
{ JSEXN_ERR, js_URIError_str, URIError },
{0,0,NULL}
{0,NULL,NULL}
};
static JSBool