Closed poti1 closed 3 months ago
This was broken by 3b10bc60979cf changing the quotes from '
to "
, if I escape the @
s:
$ ./perl -Ilib -MDevel::Peek -we 'Dump(pack("\@1A((\@2A)\@3A)", qw[X Y Z]))'
SV = PV(0x5639ac8e14d0) at 0x5639ac904090
REFCNT = 1
FLAGS = (PADTMP,POK,IsCOW,READONLY,PROTECT,pPOK)
PV = 0x5639ac922130 "\x00X\x00\x00YZ"\0
CUR = 6
LEN = 16
COW_REFCNT = 0
Where
perlfunc - pack
Description
I ran the snippet, but did not notice any \0 NULL chars:
Not with a say:
Nor with Devel::Peek::Dump:
Am I missing something? Or perhaps the functionality is changed?