Bug 906166. Make sure to initialize the "succeeded" outparam of XPC_WN_Helper_DelProperty. r=bholley

This commit is contained in:
Boris Zbarsky 2013-09-30 10:31:30 -04:00
parent 4bca1c4a80
commit 03a8251b92

View File

@ -812,6 +812,7 @@ static bool
XPC_WN_Helper_DelProperty(JSContext *cx, HandleObject obj, HandleId id,
bool *succeeded)
{
*succeeded = true;
PRE_HELPER_STUB
DelProperty(wrapper, cx, obj, id, &retval);
POST_HELPER_STUB