Revert "add nullptr check for HKS_ASN1_DECODE_XXX"

This reverts commit 9568de7d3b.

Signed-off-by: zww <zhuweiwen@huawei.com>
This commit is contained in:
zww 2024-11-20 11:27:54 +08:00
parent 472d5a3299
commit d97a401922
2 changed files with 0 additions and 2 deletions

View File

@ -254,7 +254,6 @@ static int32_t EncodeTlvAndGetLength(uint8_t **buf, uint32_t *outLength, uint32_
uint32_t length = 0; /* length of the payload */
uint32_t tmp;
HKS_IF_NULL_LOGE_RETURN(*buf, HKS_ERROR_INVALID_ARGUMENT, "invalid input param");
HKS_ASN1_DECODE_BYTE(*buf, tmp); /* get type */
if ((*buf)[0] < ASN_1_MIN_VAL_1_EXTRA_LEN_BYTE) {
/* Current byte tells the length */

View File

@ -134,7 +134,6 @@ static int32_t Asn1GetObj(struct HksBlob *next, struct HksAsn1Obj *obj, const st
uint8_t *buf = data->data;
uint32_t length = 0;
obj->header.data = buf;
HKS_IF_NULL_LOGE_RETURN(buf, HKS_ERROR_INVALID_ARGUMENT, "invalid input param");
HKS_ASN1_DECODE_BYTE(buf, obj->header.type);
if (buf[0] < ASN_1_MIN_VAL_1_EXTRA_LEN_BYTE) {
HKS_ASN1_DECODE_BYTE(buf, length);