The function backtrace_symbols_fd() in the libexecinfo library allocates some buffer and the fill it with snprintf(). snprintf() leaves unused some space at the end of the buffer. Then backtrace_symbols_fd() output the whole buffer; it result in junk in the output. Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->itetcu Over to maintainer (via the GNATS Auto Assign Tool)
Author: itetcu Date: Sun Aug 12 09:56:15 2012 New Revision: 302432 URL: http://svn.freebsd.org/changeset/ports/302432 Log: Output only the used part of the buffer in backtrace_symbols_fd(). PR: 166278 Submitted by: Dmitrij Tejblum Modified: head/devel/libexecinfo/files/patch-execinfo.c (contents, props changed) Modified: head/devel/libexecinfo/files/patch-execinfo.c ============================================================================== --- head/devel/libexecinfo/files/patch-execinfo.c Sun Aug 12 09:36:30 2012 (r302431) +++ head/devel/libexecinfo/files/patch-execinfo.c Sun Aug 12 09:56:15 2012 (r302432) @@ -54,3 +54,11 @@ return rval; } +@@ -155,6 +158,6 @@ + return; + snprintf(buf, len, "%p\n", buffer[i]); + } +- write(fd, buf, len - 1); ++ write(fd, buf, strlen(buf)); + } + } _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!