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>2012-05-26 17:31:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-26 17:31:57 +0400
commited98de33984bd95fb17323a32343effe84c047bc (patch)
treeadcf2b48eb6de73019f8c532977795d5c7b54198 /intern/guardedalloc
parentba5e13912d4ce132bb8a20f490e24c0cc13b72a3 (diff)
code cleanup: dutch -> english (comments)
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/intern/mallocn.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c
index bb3a1c66ddc..f40bed16d75 100644
--- a/intern/guardedalloc/intern/mallocn.c
+++ b/intern/guardedalloc/intern/mallocn.c
@@ -743,7 +743,7 @@ static const char *check_memlist(MemHead *memh)
if (forw != back) return ("MORE THAN 1 MEMORYBLOCK CORRUPT");
if (forw == NULL && back == NULL) {
- /* geen foute headers gevonden dan maar op zoek naar memblock*/
+ /* no wrong headers found then but in search of memblock */
forw = membase->first;
if (forw) forw = MEMNEXT(forw);
@@ -773,7 +773,7 @@ static const char *check_memlist(MemHead *memh)
else name = "No name found";
if (forw == memh) {
- /* voor alle zekerheid wordt dit block maar uit de lijst gehaald */
+ /* to be sure but this block is removed from the list */
if (forwok) {
if (backok) {
forwok->next = (MemHead *)&backok->next;
@@ -782,7 +782,6 @@ static const char *check_memlist(MemHead *memh)
} else{
forwok->next = NULL;
membase->last = (struct localLink *) &forwok->next;
-/* membase->last = (struct Link *) &forwok->next; */
}
} else{
if (backok) {