From bc6d4e52806eb1ace282e983566660928214374c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 11 Nov 2006 16:50:38 +0000 Subject: r19665: Fix a memleak --- source/param/loadparm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source') diff --git a/source/param/loadparm.c b/source/param/loadparm.c index fe1dc8ec508..fea41a880f2 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -4573,7 +4573,7 @@ static int process_usershare_file(const char *dir_name, const char *file_name, i /* Should we allow printers to be shared... ? */ ctx = talloc_init("usershare_sd_xctx"); if (!ctx) { - SAFE_FREE(lines); + file_lines_free(lines); return 1; } @@ -4581,11 +4581,11 @@ static int process_usershare_file(const char *dir_name, const char *file_name, i iService, lines, numlines, sharepath, comment, &psd, &guest_ok) != USERSHARE_OK) { talloc_destroy(ctx); - SAFE_FREE(lines); + file_lines_free(lines); return -1; } - SAFE_FREE(lines); + file_lines_free(lines); /* Everything ok - add the service possibly using a template. */ if (iService < 0) { -- cgit