OcAppleIm4Lib: Fix memcpy undefined reference

This commit is contained in:
vit9696 2020-08-01 16:38:07 +03:00
parent a7547f07d4
commit eaac5f0453

View File

@ -606,11 +606,15 @@ DERImg4FindDecodeProperty (
DERImg4Property *Property
)
{
STATIC CONST DERItemSpec PropertyItemSpecTpl[] = DER_IMG4_PROPERTY_SPEC_INIT;
DERReturn DerResult;
DERItem PropItem;
uint32_t CurPropTag;
DERItemSpec PropertyItemSpec[ARRAY_SIZE (PropertyItemSpecTpl)];
CopyMem (PropertyItemSpec, PropertyItemSpecTpl, sizeof (PropertyItemSpecTpl));
DERItemSpec PropertyItemSpec[] = DER_IMG4_PROPERTY_SPEC_INIT;
PropertyItemSpec[1].tag = PropValueTag;
assert (PropSetItem != NULL);