mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-05 21:45:03 +00:00
Fix .obj parsing when empty 'g' is last
In some .obj files, there's a stray 'g' followed by a newline at the very end of the file. What happens right now is that *p++ skips past the "terminating newline", and then proceeds to process out of bounds memory which leads to a crash. I'm not sure if 'g' can actually be empty per spec, so this change just fixes the crash without resetting the group to "default" or anything like that; 'v'/'f' shouldn't be empty but this would fix crashing when parsing malicious/malformed .obj files as well.
This commit is contained in:
parent
814900cd31
commit
293b83f259
1 changed files with 9 additions and 0 deletions
|
@ -1153,6 +1153,9 @@ void parse_buffer(fastObjData* data, const char* ptr, const char* end)
|
|||
case 'n':
|
||||
p = parse_normal(data, p);
|
||||
break;
|
||||
|
||||
default:
|
||||
p--; /* roll p++ back in case *p was a newline */
|
||||
}
|
||||
break;
|
||||
|
||||
|
@ -1165,6 +1168,9 @@ void parse_buffer(fastObjData* data, const char* ptr, const char* end)
|
|||
case '\t':
|
||||
p = parse_face(data, p);
|
||||
break;
|
||||
|
||||
default:
|
||||
p--; /* roll p++ back in case *p was a newline */
|
||||
}
|
||||
break;
|
||||
|
||||
|
@ -1177,6 +1183,9 @@ void parse_buffer(fastObjData* data, const char* ptr, const char* end)
|
|||
case '\t':
|
||||
p = parse_group(data, p);
|
||||
break;
|
||||
|
||||
default:
|
||||
p--; /* roll p++ back in case *p was a newline */
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue