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>2021-04-30 08:20:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-30 08:20:44 +0300
commitd286adc26e9d58475e5d7d83160999a25b6fc61f (patch)
tree50e987d3e31cae8fed709d1931c834095b411276 /source/blender/blenkernel/intern/softbody.c
parent8a1d3bf2b1f9564d845c694ebf11268bbdfced97 (diff)
Cleanup: remove redundant assignments & NULL pointer check
Diffstat (limited to 'source/blender/blenkernel/intern/softbody.c')
-rw-r--r--source/blender/blenkernel/intern/softbody.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/softbody.c b/source/blender/blenkernel/intern/softbody.c
index d52e4443ac1..3b1230ce3b6 100644
--- a/source/blender/blenkernel/intern/softbody.c
+++ b/source/blender/blenkernel/intern/softbody.c
@@ -499,7 +499,6 @@ static void ccd_mesh_free(ccd_Mesh *ccdm)
}
MEM_freeN(ccdm->mima);
MEM_freeN(ccdm);
- ccdm = NULL;
}
}