Summary: | [patch] devel/libexecinfo: backtrace_symbols_fd() output some junk | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Dmitrij Tejblum <tejblum> | ||||
Component: | Individual Port(s) | Assignee: | Ion-Mihai "IOnut" Tetcu <itetcu> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Dmitrij Tejblum
2012-03-20 17:40:07 UTC
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! |