f30e8c7e71
MFC after: 1 week
11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
# $FreeBSD$
|
|
# This use-after-free bug probably needs non-default settings to show up.
|
|
|
|
v1=nothing v2=nothing
|
|
trap 'trap "echo bad" USR1
|
|
v1=trap_received
|
|
v2=trap_invoked
|
|
:' USR1
|
|
kill -USR1 "$$"
|
|
[ "$v1.$v2" = trap_received.trap_invoked ]
|