Browse Source

ignore non ascii characters for right now

Kajetan Johannes Hammerle 3 years ago
parent
commit
0bd639b4a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      RawReader.h

+ 1 - 1
RawReader.h

@@ -71,7 +71,7 @@ public:
             if(bytes < 0) {
                 markError();
                 break;
-            } else if(bytes == 0) {
+            } else if(bytes == 0 || c < 0) {
                 break;
             }