Show tag and length of bd fields

This commit is contained in:
Alexandre Bard 2021-05-31 11:38:45 +02:00
parent cc6d8e6e6f
commit a1ba8519f5
1 changed files with 1 additions and 0 deletions

View File

@ -548,6 +548,7 @@ bd_bool_t BD_ImportData( BD_Context* pCtx, const void* pData )
tag = bd_getUInt16( pTemp + 0 );
len = bd_getUInt16( pTemp + 2 );
pTemp += 4;
printf("tag: %d, len: %d\n", tag, len);
/* Validate length field */
if ( len > BD_MAX_ENTRY_LEN )