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:
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/intern/mallocn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c
index 4a30388c047..f1a83583715 100644
--- a/intern/guardedalloc/intern/mallocn.c
+++ b/intern/guardedalloc/intern/mallocn.c
@@ -683,8 +683,8 @@ static void addtail(volatile localListBase *listbase, void *vlink)
{
struct localLink *link = vlink;
- /* for a generic API general error checks here is fine but
- * the use here they will never be NULL */
+ /* for a generic API error checks here is fine but
+ * the limited use here they will never be NULL */
#if 0
if (link == NULL) return;
if (listbase == NULL) return;
@@ -702,8 +702,8 @@ static void remlink(volatile localListBase *listbase, void *vlink)
{
struct localLink *link = vlink;
- /* for a generic API general error checks here is fine but
- * the use here they will never be NULL */
+ /* for a generic API error checks here is fine but
+ * the limited use here they will never be NULL */
#if 0
if (link == NULL) return;
if (listbase == NULL) return;