1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

CLITAR changes to overcome some reported problems and add Jay's changes

This commit is contained in:
Richard Sharpe
-
parent 31e768369f
commit e1468dac03

View File

@@ -5016,6 +5016,25 @@ int unistrcpy(char *dst, char *src)
return num_wchars;
}
/*******************************************************************
Create a string of size size+1 (for the null)
*******************************************************************/
char *string_create_s(int size)
{
char *tmp;
tmp = (char *)malloc(size+1);
if (tmp == NULL) {
DEBUG(0, ("Out of memory in string_create_s\n"));
}
return(tmp);
}
/*******************************************************************
safe string copy into a known length string. maxlength does not
include the terminating zero.