From b6fda7f8bd48e836e7ded2a610b69ff760f9d989 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 11 Nov 2006 16:50:38 +0000 Subject: r19665: Fix a memleak (This used to be commit bc6d4e52806eb1ace282e983566660928214374c) --- source3/param/loadparm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/param/loadparm.c') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index fe1dc8ec50..fea41a880f 100644 --- a/source3/param/loadparm.c +++ b/source3/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