Bug 1030460 - Always initialize shadowsResult in EffectlesslyLookupProperty to work around a Clang/Valgrind issue. r=djvj

This commit is contained in:
Jan de Mooij 2014-08-16 16:00:40 +02:00
Родитель 1fa187f695
Коммит 7aa484acd1
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -3316,8 +3316,10 @@ EffectlesslyLookupProperty(JSContext *cx, HandleObject obj, HandlePropertyName n
shape.set(nullptr);
holder.set(nullptr);
if (checkDOMProxy)
if (checkDOMProxy) {
*checkDOMProxy = false;
*shadowsResult = ShadowCheckFailed;
}
// Check for list base if asked to.
RootedObject checkObj(cx, obj);