public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Cygwin: Zero out gmon header before use
@ 2021-06-26 14:25 Jon TURNEY
  0 siblings, 0 replies; only message in thread
From: Jon TURNEY @ 2021-06-26 14:25 UTC (permalink / raw)
  To: cygwin-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=5c9c31c52bfbf41e903eff136cdf894572704e31

commit 5c9c31c52bfbf41e903eff136cdf894572704e31
Author: Mark Geisert <mark@maxrnd.com>
Date:   Wed Jun 23 01:56:14 2021 -0700

    Cygwin: Zero out gmon header before use
    
    Tools that process gmon.out files can be confused by gmon header fields
    with garbage in them due to lack of initialization.  Repair that.

Diff:
---
 winsup/cygwin/gmon.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/winsup/cygwin/gmon.c b/winsup/cygwin/gmon.c
index b31842cd9..8b1c449c4 100644
--- a/winsup/cygwin/gmon.c
+++ b/winsup/cygwin/gmon.c
@@ -224,6 +224,7 @@ _mcleanup(void)
 	write(log, dbuf, len);
 #endif
 	hdr = (struct gmonhdr *)&gmonhdr;
+	bzero(hdr, sizeof *hdr);
 	hdr->lpc = p->lowpc;
 	hdr->hpc = p->highpc;
 	hdr->ncnt = p->kcountsize + sizeof(gmonhdr);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-06-26 14:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-26 14:25 [newlib-cygwin] Cygwin: Zero out gmon header before use Jon TURNEY

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).