[Bf-blender-cvs] [a1f8755d32d] master: Libmv: Fix crash of keyframe selection on 32bit linux

Sergey Sharybin noreply at git.blender.org
Fri Apr 7 17:11:17 CEST 2017


Commit: a1f8755d32d547190f781fa162a80fbd210b9671
Author: Sergey Sharybin
Date:   Fri Apr 7 17:10:44 2017 +0200
Branches: master
https://developer.blender.org/rBa1f8755d32d547190f781fa162a80fbd210b9671

Libmv: Fix crash of keyframe selection on 32bit linux

===================================================================

M	intern/libmv/libmv/multiview/homography.cc

===================================================================

diff --git a/intern/libmv/libmv/multiview/homography.cc b/intern/libmv/libmv/multiview/homography.cc
index ce533a3ead2..a7679c33bbf 100644
--- a/intern/libmv/libmv/multiview/homography.cc
+++ b/intern/libmv/libmv/multiview/homography.cc
@@ -209,8 +209,8 @@ class HomographySymmetricGeometricCostFunctor {
     return true;
   }
 
-  const Vec2 x_;
-  const Vec2 y_;
+  const Vec2 &x_;
+  const Vec2 &y_;
 };
 
 // Termination checking callback used for homography estimation.




More information about the Bf-blender-cvs mailing list