Fix new attribute name index

This commit is contained in:
ktkk 2026-07-04 01:43:29 +02:00
parent 07d43f2fe7
commit 75d023cfe1

View file

@ -169,7 +169,7 @@ pub const AttributeInfo = union(enum) {
};
} else {
return .{
.new = try NewAttribute.parse(limited, attribute_name_index, attribute_length, allocator),
.new = try NewAttribute.parse(limited, attribute_name_index + 1, attribute_length, allocator),
};
}
}