Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-09-13 07:49:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-13 07:49:11 +0400
commit29cbf93b075c9be2fb635450e8ce55a474ec0e18 (patch)
tree533c09262b4b43e214b011baa1e6f762b45f6604 /extern/libmv
parentcca746c8e65503f4a98b1ccaf1110acb793b2b9b (diff)
correct error in libmv stub, also correct typo.
Diffstat (limited to 'extern/libmv')
-rw-r--r--extern/libmv/libmv-capi_stub.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/libmv/libmv-capi_stub.cc b/extern/libmv/libmv-capi_stub.cc
index 59a3fe89398..4896f4c6949 100644
--- a/extern/libmv/libmv-capi_stub.cc
+++ b/extern/libmv/libmv-capi_stub.cc
@@ -280,7 +280,7 @@ void libmv_cameraIntrinsicsInvert(const libmv_CameraIntrinsicsOptions *libmv_cam
void libmv_homography2DFromCorrespondencesLinear(double (* /* x1 */)[2], double (* /* x2 */)[2], int /* num_points */,
double H[3][3], double /* expected_precision */)
{
- memset(H, 0, sizeof(H));
+ memset(H, 0, sizeof(double[3][3]));
H[0][0] = 1.0f;
H[1][1] = 1.0f;
H[2][2] = 1.0f;