refactor: fix 'boundry' typo to 'boundary' (#982)

This commit is contained in:
Falke Carlsen
2025-09-25 10:43:57 +02:00
committed by GitHub
parent 9bd9826835
commit 86449949c5
8 changed files with 10 additions and 10 deletions

View File

@@ -23,7 +23,7 @@ int8_t GCMParser::parse(uint8_t *d, DataParserContext &ctx, bool hastag) {
uint32_t headersize = 0;
uint8_t* ptr = (uint8_t*) d;
if(hastag) {
if(*ptr != GCM_TAG) return DATA_PARSE_BOUNDRY_FLAG_MISSING;
if(*ptr != GCM_TAG) return DATA_PARSE_BOUNDARY_FLAG_MISSING;
ptr++;
headersize++;
}