===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libjson-validator-perl-4.10+dfsg/t/recursive_data_protection.t-9-  my ($self, $data, $path, $schema) = @_;
libjson-validator-perl-4.10+dfsg/t/recursive_data_protection.t:10:  $ref_counts{refaddr($data)}++ if ref $data;
libjson-validator-perl-4.10+dfsg/t/recursive_data_protection.t-11-  goto &$original_validate;
##############################################
libjson-validator-perl-4.10+dfsg/t/recursive_data_protection.t-22-
libjson-validator-perl-4.10+dfsg/t/recursive_data_protection.t:23:  is $ref_counts{refaddr($object->{level1}{level2})}, $exp_ref_counts, "recursive_data_protection($enabled)";
libjson-validator-perl-4.10+dfsg/t/recursive_data_protection.t-24-}
##############################################
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator.pm-275-    elsif (is_type $topic, 'HASH') {
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator.pm:276:      next if $seen{refaddr($topic)}++;
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator.pm-277-
##############################################
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator.pm-451-  if ($self->recursive_data_protection) {
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator.pm:452:    my $seen_addr = join ':', refaddr($schema), (ref $data ? refaddr $data : ++$self->{seen}{scalar});
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator.pm-453-    return @{$self->{seen}{$seen_addr}} if $self->{seen}{$seen_addr};    # Avoid recursion
##############################################
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator/Schema/Draft201909.pm-31-    elsif (is_type $topic, 'HASH') {
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator/Schema/Draft201909.pm:32:      next if $seen{refaddr($topic)}++;
libjson-validator-perl-4.10+dfsg/lib/JSON/Validator/Schema/Draft201909.pm-33-