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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-01 15:08:46 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-01 15:08:46 +0300
commit4813af326ba15a5aac8f94e1f0a6a34eabc40b4e (patch)
treedfb003a1a04d759b46ee8f9d816441ae7d4d471f /intern/opennl
parent092e9dcdc342aa173e24a5ab286b1faee4fe8a53 (diff)
Fix for bug #7851: crash with LSCM unwrap, due to opennl refactor.
Fix for bug #7856: crash hitting "neg" button for particle vertex groups.
Diffstat (limited to 'intern/opennl')
-rw-r--r--intern/opennl/intern/opennl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/opennl/intern/opennl.c b/intern/opennl/intern/opennl.c
index 2d30da075d3..d779e861cb6 100644
--- a/intern/opennl/intern/opennl.c
+++ b/intern/opennl/intern/opennl.c
@@ -240,7 +240,7 @@ static void __nlSparseMatrixConstruct(
M->storage = storage;
if(storage & __NL_ROWS) {
M->row = __NL_NEW_ARRAY(__NLRowColumn, m);
- for(i=0; i<n; i++) {
+ for(i=0; i<m; i++) {
__nlRowColumnConstruct(&(M->row[i]));
}
} else {