Nigel Horne
Nigel Horne
Still happens. Neither "there" nor "done" appears in this program: njh@microcenter:/tmp$ cat autodie #!/usr/bin/env perl use strict; use warnings; use autodie qw(:all); if(kill(0, 10000)) { print "there\n"; } njh@microcenter:/tmp$ ./autodie...
Yes, that is what I'm saying.
@drakodev the first is the correct one.
Thanks everyone. Let me sleep on this to see if I can come up with a solution (or at least a partial workaround) that works for me. Perhaps parsing the...
Thanks @thisisaaronland I appreciate your time and effort.
I’ll clone it and take a look.
Couldn't find the code - no link on the website and nothing in Github.
Agreed. This would help. See my recent post on [email protected].
gcc version 6.3 CFLAGS=-O2 -W -Wformat=2 -Wswitch -Wshadow -Wwrite-strings -Wuninitialized -Wall -pipe -fomit-frame-pointer -D_FORTIFY_SOURCE=2 -Wpointer-arith -Wstrict-prototypes -fstack-protector -Wstack-protector -Wextra -Wbad-function-cast -Wcast-align -Wcast-qual -Wdisabled-optimization -Wendif-labels -Wfloat-equal -Wformat-nonliteral -Winline -Wmissing-declarations -Wmissing-prototypes -Wnested-externs...
It looks like the fix discussed in https://stackoverflow.com/questions/15321493/how-should-i-pass-null-to-the-va-list-function-parameter will help here. I feel a pull request coming on.