forked from wolfSSL/wolfssl
Fix dynamic type name
This commit is contained in:
@@ -20090,7 +20090,7 @@ int CreateDevPrivateKey(void** pkey, byte* data, word32 length, int hsType,
|
|||||||
*pkey = (void*)rsaKey;
|
*pkey = (void*)rsaKey;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
XFREE(rsaKey, heap, DYNAMIC_TYPE_EC);
|
XFREE(rsaKey, heap, DYNAMIC_TYPE_RSA);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@@ -20113,7 +20113,7 @@ int CreateDevPrivateKey(void** pkey, byte* data, word32 length, int hsType,
|
|||||||
*pkey = (void*)ecKey;
|
*pkey = (void*)ecKey;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
XFREE(ecKey, heap, DYNAMIC_TYPE_EC);
|
XFREE(ecKey, heap, DYNAMIC_TYPE_ECC);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user