freebsd-ports/security/bfbtester/files/patch-src::bfbt::exec.c
Will Andrews 8a44bfc355 Add bfbtester 2.0, a security tool for testing binaries for overflows.
PR:		24774
Submitted by:	Mike Heffner <mheffner@vt.edu>
2001-04-07 07:33:46 +00:00

17 lines
571 B
C

Index: src/bfbt/exec.c
===================================================================
RCS file: /cvsroot/bfbtester/bfbtester/src/bfbt/exec.c,v
retrieving revision 1.5
diff -u -r1.5 exec.c
--- src/bfbt/exec.c 2001/01/25 06:24:49 1.5
+++ src/bfbt/exec.c 2001/02/01 03:35:37
@@ -144,7 +144,8 @@
else if( WIFSIGNALED(entry->status) ){
/* we ignore SIGKILL and SIGPIPE */
if( WTERMSIG(entry->status) == SIGKILL
- || WTERMSIG(entry->status) == SIGPIPE){
+ || WTERMSIG(entry->status) == SIGPIPE
+ || WTERMSIG(entry->status) == SIGPROF){
return;
}
{