ajklein/webkit

Error in Source/WebCore/mdv/ScriptValueBinding.cpp

arv opened this issue · 1 comments

arv commented

Source/WebCore/mdv/ScriptValueBinding.cpp line 147

if (pathValues.hasNoValue() || !result.isObject())
    return false;

should be

if (pathValues.hasNoValue() || !pathValues.isObject())
    return false;

I guess if I return a delegate with a non object this is observable

Thanks. Fixed.