diff options
author | Simo Sorce <idra@samba.org> | 2001-10-13 12:47:59 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2001-10-13 12:47:59 +0000 |
commit | 7264d611eff871f424d449e1ff1c7ec3f5fdde40 (patch) | |
tree | e9af8b570b894fccf982a7df4a98f03f10a2297a /source/lib/talloc.c | |
parent | ebba334c15619610475a5c8242a55ed4fcdedf7c (diff) | |
download | samba-7264d611eff871f424d449e1ff1c7ec3f5fdde40.tar.gz samba-7264d611eff871f424d449e1ff1c7ec3f5fdde40.tar.xz samba-7264d611eff871f424d449e1ff1c7ec3f5fdde40.zip |
introduce mangle backward compatibility functions
add talloc_asprintf()
Diffstat (limited to 'source/lib/talloc.c')
-rw-r--r-- | source/lib/talloc.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source/lib/talloc.c b/source/lib/talloc.c index 97ba196e2ac..05f4351aafc 100644 --- a/source/lib/talloc.c +++ b/source/lib/talloc.c @@ -165,3 +165,34 @@ char *talloc_strdup(TALLOC_CTX *t, char *p) { return talloc_memdup(t, p, strlen(p) + 1); } + +/* allocate a bit of memory from the specified pool */ +char *talloc_asprintf(TALLOC_CTX *t, const char *fmt, ...) +{ + struct talloc_chunk *tc; + va_list ap; + char *str; + size_t ret; + + tc = malloc(sizeof(*tc)); + if (!tc) + return NULL; + + va_start(ap, fmt); + ret = vasprintf(&str, fmt, ap); + va_end(ap); + if (ret <= 0) + { + SAFE_FREE(tc); + return NULL; + } + + tc->ptr = str; + tc->size = ret + 1; + tc->next = t->list; + t->list = tc; + t->total_alloc_size += tc->size; + + return str; +} + |