diff -r 7176c8eee762 Source/WebCore/platform/java/BridgeUtils.cpp --- a/Source/WebCore/platform/java/BridgeUtils.cpp Wed Aug 17 13:28:53 2011 -0700 +++ b/Source/WebCore/platform/java/BridgeUtils.cpp Thu Aug 25 23:52:23 2011 -0700 @@ -321,7 +321,7 @@ JSObjectRef object = static_cast(jlong_to_ptr(peer)); JSStringRef name = asJSStringRef(env, str); JSValueRef jsvalue = WebCore::Java_Object_to_JSValue(env, contextPeer, value); - JSPropertyAttributes attributes; + JSPropertyAttributes attributes = 0; JSObjectSetProperty(globalContext, object, name, jsvalue, attributes, NULL); JSStringRelease(name); } @@ -370,7 +370,7 @@ JSGlobalContextRef globalContext = WebCore::getGlobalContext(contextPeer); JSObjectRef object = static_cast(jlong_to_ptr(peer)); JSValueRef jsvalue = WebCore::Java_Object_to_JSValue(env, contextPeer, value); - JSPropertyAttributes attributes; + JSPropertyAttributes attributes = 0; JSObjectSetPropertyAtIndex(globalContext, object, (unsigned) index, jsvalue, NULL); }