HEX
Server: Apache
System: Linux nc-ph-0707-26.instaforreviews.com 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64
User: qirgxuo4hkuv (1004)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: //.cpanm/latest-build/Encode-3.16/t/rt113164.t
BEGIN {
    if ($ENV{'PERL_CORE'}) {
        chdir 't';
        unshift @INC, '../lib';
    }
    require Config; import Config;
    if ($Config{'extensions'} !~ /\bEncode\b/) {
      print "1..0 # Skip: Encode was not built\n";
      exit 0;
    }
    if (ord("A") == 193) {
      print "1..0 # Skip: EBCDIC\n";
      exit 0;
    }
    $| = 1;
}

use strict;
use warnings;

use Test::More tests => 2;

use Encode;

my $str = "You" . chr(8217) . "re doomed!";

my $data;

my $cb = sub {
    $data = [ ('?') x 12_500 ];
    return ";";
};

my $octets = encode('iso-8859-1', $str, $cb);
is $octets, "You;re doomed!", "stack was not overwritten";

$octets = encode('iso-8859-1', $str, $cb);
is $octets, "You;re doomed!", "stack was not overwritten";