Skip to content
Snippets Groups Projects
Commit 01d12d2b authored by deuce's avatar deuce
Browse files

Fix cAPScASE

parent 7a2cdad4
No related branches found
No related tags found
No related merge requests found
...@@ -1046,7 +1046,7 @@ js_get_msg_header(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval * ...@@ -1046,7 +1046,7 @@ js_get_msg_header(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *
if(JS_GetProperty(cx, JS_GetGlobalObject(cx), "MsgBase", &val) && !JSVAL_NULL_OR_VOID(val)) { if(JS_GetProperty(cx, JS_GetGlobalObject(cx), "MsgBase", &val) && !JSVAL_NULL_OR_VOID(val)) {
JS_ValueToObject(cx,val,&proto); JS_ValueToObject(cx,val,&proto);
if(JS_GetProperty(cx, proto, "hEADERPrototype", &val) && !JSVAL_NULL_OR_VOID(val)) if(JS_GetProperty(cx, proto, "HeaderPrototype", &val) && !JSVAL_NULL_OR_VOID(val))
JS_ValueToObject(cx,val,&proto); JS_ValueToObject(cx,val,&proto);
else else
proto=NULL; proto=NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment