Remove the result-initialization from e9c045ce1618 which shouldn't be needed, bug 540776 fixed this the correct way.

This commit is contained in:
Benjamin Smedberg 2010-01-20 14:08:42 -05:00
parent f5bef5e9e6
commit 50f7ed1ccb

View File

@ -2255,7 +2255,6 @@ setCookie(NPObject* npobj, const NPVariant* args, uint32_t argCount, NPVariant*
NPError err = NPN_SetValueForURL(npp, NPNURLVCookie, url, cookie->UTF8Characters, cookie->UTF8Length);
free(url);
VOID_TO_NPVARIANT(*result);
return (err == NPERR_NO_ERROR);
}