From 37b9d2fb0cac2960466554021a8f94f0942471cc Mon Sep 17 00:00:00 2001
From: scrawl <scrawl@baseoftrash.de>
Date: Thu, 15 May 2014 01:53:52 +0200
Subject: [PATCH] Fix a wrong use of reference that causes potential crash

---
 apps/openmw/mwmechanics/aiavoiddoor.hpp | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/apps/openmw/mwmechanics/aiavoiddoor.hpp b/apps/openmw/mwmechanics/aiavoiddoor.hpp
index 85bb09fc8..c1b326198 100644
--- a/apps/openmw/mwmechanics/aiavoiddoor.hpp
+++ b/apps/openmw/mwmechanics/aiavoiddoor.hpp
@@ -11,9 +11,9 @@ namespace MWMechanics
 {
     /// \brief AiPackage to have an actor avoid an opening door
     /** The AI will retreat from the door until it has finished opening, walked far away from it, or one second has passed, in an attempt to avoid it
-    **/
-    class AiAvoidDoor : public AiPackage
-    {
+    **/
+    class AiAvoidDoor : public AiPackage
+    {
         public:
             /// Avoid door until the door is fully open
             AiAvoidDoor(const MWWorld::Ptr& doorPtr);
@@ -29,10 +29,10 @@ namespace MWMechanics
 
         private:
             float mDuration;
-            const MWWorld::Ptr& mDoorPtr;
+            MWWorld::Ptr mDoorPtr;
             ESM::Position mLastPos;
-            float mAdjAngle;
-    };
-}
-#endif
+            float mAdjAngle;
+    };
+}
+#endif