Bug 1604399 - Remove dead assignment from Sgpd::Parse. r=jya

Differential Revision: https://phabricator.services.mozilla.com/D57422

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Alex Henrie 2019-12-19 06:14:28 +00:00
parent b243debf62
commit 41c36c80d5

View File

@ -1178,7 +1178,6 @@ Result<Ok, nsresult> Sgpd::Parse(Box& aBox) {
uint32_t flags;
MOZ_TRY_VAR(flags, reader->ReadU32());
const uint8_t version = flags >> 24;
flags = flags & 0xffffff;
uint32_t type;
MOZ_TRY_VAR(type, reader->ReadU32());