aboutsummaryrefslogtreecommitdiffstats
path: root/main/utils.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-16 22:00:56 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-16 22:00:56 +0000
commit7aff56497d04a19a5917fe3538468aa337a7a946 (patch)
treeacfffe9d88f025ad63caab83921097ca09c3c71c /main/utils.c
parent277dc910f516ad3e1c45ded89ea66f782ca04b81 (diff)
Merged revisions 176255 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r176255 | kpfleming | 2009-02-16 15:45:54 -0600 (Mon, 16 Feb 2009) | 13 lines Merged revisions 176216 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r176216 | kpfleming | 2009-02-16 15:10:38 -0600 (Mon, 16 Feb 2009) | 3 lines fix a flaw in the ast_string_field_build() family of API calls; these functions made no attempt to reuse the space already allocated to a field, so every time the field was written it would allocate new space, leading to what appeared to be a memory leak. ........ r176254 | kpfleming | 2009-02-16 15:41:46 -0600 (Mon, 16 Feb 2009) | 3 lines correct a logic error in the last stringfields commit... don't mark additional space as allocated if the string was built using already-allocated space ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@176259 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/utils.c')
-rw-r--r--main/utils.c56
1 files changed, 38 insertions, 18 deletions
diff --git a/main/utils.c b/main/utils.c
index eb658bff8..8c0acf1e9 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -1587,38 +1587,58 @@ int __ast_string_field_ptr_grow(struct ast_string_field_mgr *mgr, size_t needed,
void __ast_string_field_ptr_build_va(struct ast_string_field_mgr *mgr,
struct ast_string_field_pool **pool_head,
- const ast_string_field *ptr, const char *format, va_list ap1, va_list ap2)
+ ast_string_field *ptr, const char *format, va_list ap1, va_list ap2)
{
size_t needed;
- char *dst = (*pool_head)->base + mgr->used;
- const char **p = (const char **) ptr;
+ size_t available;
size_t space = mgr->size - mgr->used;
+ char *target;
- /* try to write using available space */
- needed = vsnprintf(dst, space, format, ap1) + 1;
-
- va_end(ap1);
+ /* if the field already has space allocated, try to reuse it;
+ otherwise, use the empty space at the end of the current
+ pool
+ */
+ if ((*ptr)[0] != '0') {
+ target = (char *) *ptr;
+ available = strlen(target);
+ } else {
+ target = (*pool_head)->base + mgr->used;
+ available = space;
+ }
- if (needed > space) { /* if it fails, reallocate */
- size_t new_size = mgr->size * 2;
+ needed = vsnprintf(target, available, format, ap1) + 1;
- while (new_size < needed)
- new_size *= 2;
+ va_end(ap1);
- if (add_string_pool(mgr, pool_head, new_size))
- return;
+ if (needed > available) {
+ /* if the space needed can be satisfied by using the current
+ pool (which could only occur if we tried to use the field's
+ allocated space and failed), then use that space; otherwise
+ allocate a new pool
+ */
+ if (needed > space) {
+ size_t new_size = mgr->size * 2;
+
+ while (new_size < needed)
+ new_size *= 2;
+
+ if (add_string_pool(mgr, pool_head, new_size))
+ return;
+ }
- dst = (*pool_head)->base + mgr->used;
- vsprintf(dst, format, ap2);
+ target = (*pool_head)->base + mgr->used;
+ vsprintf(target, format, ap2);
}
- mgr->last_alloc = *p = dst;
- mgr->used += needed;
+ if (*ptr != target) {
+ mgr->last_alloc = *ptr = target;
+ mgr->used += needed;
+ }
}
void __ast_string_field_ptr_build(struct ast_string_field_mgr *mgr,
struct ast_string_field_pool **pool_head,
- const ast_string_field *ptr, const char *format, ...)
+ ast_string_field *ptr, const char *format, ...)
{
va_list ap1, ap2;