1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

Added "crap" fix for rotating string buffers. (Increased to 20, added #define).

Andrew - please fix this properly when you have time :-).
Jeremy.
(This used to be commit 8515bdb39c)
This commit is contained in:
Jeremy Allison 2000-01-04 19:19:07 +00:00
parent ac9c6994e0
commit 794aafe349

View File

@ -1090,6 +1090,7 @@ static void init_locals(void)
}
}
#define NUMBER_OF_STATIC_STRING_BUFS 20
/******************************************************************* a
convenience routine to grab string parameters into a rotating buffer,
@ -1098,8 +1099,8 @@ callers without affecting the source string.
********************************************************************/
static char *lp_string(const char *s)
{
static char *bufs[10];
static size_t buflen[10];
static char *bufs[NUMBER_OF_STATIC_STRING_BUFS];
static size_t buflen[NUMBER_OF_STATIC_STRING_BUFS];
static int next = -1;
char *ret;
int i;
@ -1107,7 +1108,7 @@ static char *lp_string(const char *s)
if (next == -1) {
/* initialisation */
for (i=0;i<10;i++) {
for (i=0;i<NUMBER_OF_STATIC_STRING_BUFS;i++) {
bufs[i] = NULL;
buflen[i] = 0;
}
@ -1129,7 +1130,7 @@ static char *lp_string(const char *s)
}
ret = &bufs[next][0];
next = (next+1)%10;
next = (next+1)%NUMBER_OF_STATIC_STRING_BUFS;
if (!s)
*ret = 0;