From: deraadt Date: Fri, 12 Jul 2024 07:22:44 +0000 (+0000) Subject: annotate broken signal handler X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9606c1668ab867e3fbebc907a4c5d795144faf50;p=openbsd annotate broken signal handler --- 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); }