mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-18 17:07:37 -04:00
Merge branch 'pgrd_overflow' into 'master'
Fix a heap overflow in loadpgrd.cpp See merge request OpenMW/openmw!784
This commit is contained in:
commit
e9ff90f3de
@ -100,6 +100,8 @@ namespace ESM
|
|||||||
for(PointList::const_iterator it = mPoints.begin(); it != mPoints.end(); ++it, ++pointIndex)
|
for(PointList::const_iterator it = mPoints.begin(); it != mPoints.end(); ++it, ++pointIndex)
|
||||||
{
|
{
|
||||||
unsigned char connectionNum = (*it).mConnectionNum;
|
unsigned char connectionNum = (*it).mConnectionNum;
|
||||||
|
if (rawConnections.end() - rawIt < connectionNum)
|
||||||
|
esm.fail("Not enough connections");
|
||||||
for (int i = 0; i < connectionNum; ++i) {
|
for (int i = 0; i < connectionNum; ++i) {
|
||||||
Edge edge;
|
Edge edge;
|
||||||
edge.mV0 = pointIndex;
|
edge.mV0 = pointIndex;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user