[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Wed Nov 9 11:19:02 UTC 2022


The branch, master has been updated
       via  76adda9d2fe lib/replace: fix memory leak in snprintf replacements
      from  3030813765f gp: Ignore crontab -l error, since it means empty

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 76adda9d2fea9f93f4cf97536db5c0be6deeb98c
Author: Stefan Metzmacher <metze at samba.org>
Date:   Mon Oct 31 13:16:25 2022 +0100

    lib/replace: fix memory leak in snprintf replacements
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=15230
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Wed Nov  9 11:18:02 UTC 2022 on sn-devel-184

-----------------------------------------------------------------------

Summary of changes:
 lib/replace/snprintf.c | 2 ++
 1 file changed, 2 insertions(+)


Changeset truncated at 500 lines:

diff --git a/lib/replace/snprintf.c b/lib/replace/snprintf.c
index 6e4424b0b31..de814af4164 100644
--- a/lib/replace/snprintf.c
+++ b/lib/replace/snprintf.c
@@ -751,6 +751,8 @@ done:
 
 	while (chunks) {
 		cnk = chunks->next;
+		if (chunks->min_star) free(chunks->min_star);
+		if (chunks->max_star) free(chunks->max_star);
 		free(chunks);
 		chunks = cnk;
 	}


-- 
Samba Shared Repository



More information about the samba-cvs mailing list