Author: adrian Date: Mon Feb 20 03:12:46 2017 New Revision: 313979 URL: https://svnweb.freebsd.org/changeset/base/313979
Log: [ifconfig] fix a memory leak! Submitted by: Tom Rix <[email protected]> Differential Revision: https://reviews.freebsd.org/D9675 Modified: head/sbin/ifconfig/ifbridge.c Modified: head/sbin/ifconfig/ifbridge.c ============================================================================== --- head/sbin/ifconfig/ifbridge.c Mon Feb 20 03:10:56 2017 (r313978) +++ head/sbin/ifconfig/ifbridge.c Mon Feb 20 03:12:46 2017 (r313979) @@ -205,7 +205,7 @@ bridge_interfaces(int s, const char *pre } printf("\n"); } - + free(pad); free(inbuf); } _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
