Shouldn't do anything so late; just fixed another bug in the wall code.

Commit early, commit often, they say...


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1263 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-09-29 02:24:42 +00:00
parent a3da50e5ed
commit 3904aa6bf1
+4 -4
View File
@@ -287,6 +287,10 @@ out:
memset(address, 0xCC, size); memset(address, 0xCC, size);
#endif #endif
#if PARANOID_POINTER_CHECK
ptrchecklist_store(address);
#endif
#if USE_WALL #if USE_WALL
{ {
uint32 *wall = address; uint32 *wall = address;
@@ -304,10 +308,6 @@ out:
} }
#endif #endif
#if PARANOID_POINTER_CHECK
ptrchecklist_store(address);
#endif
return address; return address;
} }