Changeset 617 for branches/1.3/coverager.c
- Timestamp:
- 2009-07-05T08:30:54+02:00 (4 years ago)
- Location:
- branches/1.3
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
coverager.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/coverager.c
r615 r617 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.

