You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function loadLinkGeometry returns a nullptr for shape types it does not know how to render. This causes a segfault when parsing currently unsupported shapes, like planes. Instead of returning a nullptr, we should instead return an empty Ogre::Entity object (if possible) or check if the return of this function is a nullptr before adding it to the scene here and here.
The text was updated successfully, but these errors were encountered:
The function
loadLinkGeometry
returns anullptr
for shape types it does not know how to render. This causes a segfault when parsing currently unsupported shapes, like planes. Instead of returning anullptr
, we should instead return an emptyOgre::Entity
object (if possible) or check if the return of this function is anullptr
before adding it to the scene here and here.The text was updated successfully, but these errors were encountered: