Changeset 485 for trunk/coverager.c
- Timestamp:
- 2007-12-28T11:16:12+01:00 (5 years ago)
- File:
-
- 1 edited
-
trunk/coverager.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/coverager.c
r462 r485 36 36 char *fullpath; 37 37 struct stat st; 38 ALLOCA_FLAG(use_heap) 38 39 39 40 TRACE("mkdirs %s %d %s %d", root, rootlen, path, pathlen); 40 fullpath = do_alloca(rootlen + pathlen + 1);41 fullpath = my_do_alloca(rootlen + pathlen + 1, use_heap); 41 42 memcpy(fullpath, root, rootlen); 42 43 memcpy(fullpath + rootlen, path, pathlen); … … 59 60 #endif 60 61 } 61 free_alloca(fullpath);62 my_free_alloca(fullpath, use_heap); 62 63 } 63 64 /* }}} */
Note: See TracChangeset
for help on using the changeset viewer.

