When reviewing the patch for bug 11740 I found that the definition of
"num_to_alloc" was not part of the patch text, I had to look it up
in context. Unnecessary I believe.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Fri Feb 19 15:56:19 CET 2016 on sn-devel-144
static int add_a_service(const struct loadparm_service *pservice, const char *name)
{
int i;
- int num_to_alloc = iNumServices + 1;
struct loadparm_service **tsp = NULL;
/* it might already exist */
/* if not, then create one */
tsp = talloc_realloc(NULL, ServicePtrs,
struct loadparm_service *,
- num_to_alloc);
+ iNumServices + 1);
if (tsp == NULL) {
DEBUG(0, ("add_a_service: failed to enlarge "
"ServicePtrs!\n"));