Module Name: src Committed By: martin Date: Sat Jun 23 11:09:24 UTC 2018
Modified Files: src/usr.sbin/sysinst [netbsd-8]: util.c Log Message: Pull up following revision(s) (requested by kamil in ticket #895): usr.sbin/sysinst/util.c: revision 1.9 Fix invalid free(3) in sysinst(8) The path variable is assigned with an allocation on the heap with strdup(3). Later this pointer is changed with strsep(3) and this caused invalid free(3). Store the original pointer in a new helper variable opath and pass it to free(3). With this change, the problem is going away. Detected with MKSANITIZER=yes with AddressSanitizer. To generate a diff of this commit: cvs rdiff -u -r1.7.8.1 -r1.7.8.2 src/usr.sbin/sysinst/util.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.