From 9606c1668ab867e3fbebc907a4c5d795144faf50 Mon Sep 17 00:00:00 2001 From: deraadt Date: Fri, 12 Jul 2024 07:22:44 +0000 Subject: [PATCH] annotate broken signal handler --- bin/dd/misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/dd/misc.c b/bin/dd/misc.c index a0c20191137..ae64cea5d13 100644 --- a/bin/dd/misc.c +++ b/bin/dd/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.23 2018/04/07 18:52:39 cheloha Exp $ */ +/* $OpenBSD: misc.c,v 1.24 2024/07/12 07:22:44 deraadt Exp $ */ /* $NetBSD: misc.c,v 1.4 1995/03/21 09:04:10 cgd Exp $ */ /*- @@ -86,13 +86,13 @@ summaryx(int notused) { int save_errno = errno; - summary(); + summary(); /* XXX signal race, dprintf floating point */ errno = save_errno; } void terminate(int signo) { - summary(); + summary(); /* XXX signal race, dprintf floating point */ _exit(128 + signo); } -- 2.20.1