svn commit: r199700 - stable/8/lib/libc/posix1e

Christian Brueffer brueffer at FreeBSD.org
Mon Nov 23 09:10:08 UTC 2009


Author: brueffer
Date: Mon Nov 23 09:10:08 2009
New Revision: 199700
URL: http://svn.freebsd.org/changeset/base/199700

Log:
  MFC: r199317
  
  Fix a memory leak in acl_from_text() in case the conversion succeeded.

Modified:
  stable/8/lib/libc/posix1e/acl_from_text.c
Directory Properties:
  stable/8/lib/libc/   (props changed)
  stable/8/lib/libc/stdtime/   (props changed)

Modified: stable/8/lib/libc/posix1e/acl_from_text.c
==============================================================================
--- stable/8/lib/libc/posix1e/acl_from_text.c	Mon Nov 23 09:02:08 2009	(r199699)
+++ stable/8/lib/libc/posix1e/acl_from_text.c	Mon Nov 23 09:10:08 2009	(r199700)
@@ -257,6 +257,7 @@ acl_from_text(const char *buf_p)
 	}
 #endif
 
+	free(mybuf_p);
 	return(acl);
 
 error_label:


More information about the svn-src-stable-8 mailing list