fix clang-analyzer-deadcode.DeadStores in wolfcrypt/src/asn.c:SetOthername().

This commit is contained in:
Daniel Pouzzner
2023-04-18 14:27:52 -05:00
parent a4aef0e55d
commit 4180a650c8

View File

@ -14613,7 +14613,6 @@ word32 SetOthername(void *name, byte *output)
output += SetHeader(CTC_UTF8, nameSz, output);
XMEMCPY(output, nameStr, nameSz);
output += nameSz;
}
return len;