1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

r25138: More pstring elimination. Add a TALLOC_CTX parameter

to unix_convert().
Jeremy.
(This used to be commit 39c211a702)
This commit is contained in:
Jeremy Allison
2007-09-13 22:08:59 +00:00
committed by Gerald (Jerry) Carter
parent d0de93ca76
commit eacd314057
12 changed files with 179 additions and 74 deletions

View File

@ -549,9 +549,14 @@ size_t str_charnum(const char *s)
size_t str_ascii_charnum(const char *s)
{
pstring tmpbuf2;
push_ascii(tmpbuf2, s, sizeof(tmpbuf2), STR_TERMINATE);
return strlen(tmpbuf2);
size_t ret;
char *tmpbuf2 = NULL;
if (push_ascii_allocate(&tmpbuf2, s) == (size_t)-1) {
return 0;
}
ret = strlen(tmpbuf2);
SAFE_FREE(tmpbuf2);
return ret;
}
BOOL trim_char(char *s,char cfront,char cback)