We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7dc28f5 + 745625f commit e211f37Copy full SHA for e211f37
1 file changed
src/ipts/parser.hpp
@@ -118,8 +118,10 @@ class Parser {
118
* This causes a parse error, because the "0b" should be "0f".
119
* So let's just ignore these packets.
120
*/
121
- if (reader.size() == 4)
+ if (reader.size() == 4) {
122
+ reader.skip(reader.size());
123
return;
124
+ }
125
126
this->parse_report_frames(sub);
127
break;
0 commit comments