SethRobinson / proton

Proton SDK: Seth's GL/GLES messy multi-platform C++ game SDK. Can output to Windows, OS X, iOS, Android, Linux (Raspbian too), HTML5, Flash
Other
79 stars 16 forks source link

Fix potentially inserting out of bounds iterator. [RTPack] #25

Closed CreativePSofficial closed 1 year ago

CreativePSofficial commented 1 year ago

Missing check before inserting iterator to charList could cause the end/oob iterator to be inserted to the list - as the iterator gets advanced one last time within the loop, leading to undefined behavior when the insert occurs in outer scope.

SethRobinson commented 1 year ago

LGTM, thanks