Skip to content
Snippets Groups Projects
Commit 8fc08f0d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix CID 508260: Null pointer dereference

And really, more importantly, the msg header field_list array length would
always be interpretted as 0-length!

... introduced in commit 54523145
parent c8a83171
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
Pipeline #6537 passed
......@@ -947,7 +947,7 @@ static bool parse_header_object(JSContext* cx, private_t* p, JSObject* hdr, smbm
if(JS_GetProperty(cx, hdr, "field_list", &val) && JSVAL_IS_OBJECT(val)) {
array=JSVAL_TO_OBJECT(val);
len=0;
if(array == NULL && !JS_GetArrayLength(cx, array, &len)) {
if(array == NULL || !JS_GetArrayLength(cx, array, &len)) {
JS_ReportError(cx, "Invalid \"field_list\" array in header object");
goto err;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment