Changeset 838
- Timestamp:
- 03/25/2012 04:24:14 AM (14 months ago)
- Files:
-
- 1 modified
-
trunk/processor/head.m4 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/head.m4
r836 r838 107 107 void **p = (void **) mem; 108 108 void **end = (char *) mem + n; 109 while (p < end ) {109 while (p < end - sizeof(content)) { 110 110 *p = content; 111 111 p += sizeof(content); 112 } 113 if (p < end) { 114 memset(p, -1, end - p); 112 115 } 113 116 return mem;

