google / earthenterprise

Google Earth Enterprise - Open Source
Apache License 2.0
2.67k stars 887 forks source link

Fix vector overflows #1935

Closed tst-lsavoie closed 3 years ago

tst-lsavoie commented 3 years ago

This fixes some vector overflows where the 4th element of a 3-element vector was accessed. The problem code wasn't used, so I simply deleted it. I also removed some other unused functions and added unit tests. I tried to only remove functions such that the compiler would catch any errors except that I removed operator= from etMat3 because it's only used in one place so it was easy to determine that it wasn't needed.

Fixes #1934