diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-26 05:32:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-26 05:32:02 +0000 |
commit | 504f80c1f3625809f472c1ce21089fdae860d9fd (patch) | |
tree | cfeaae7da4b08f0f27798122ecbf4f1efba3b8cb /intrpvar.h | |
parent | 14180c03bf5269934b197b82e34fd4696ad1053d (diff) | |
download | perl-504f80c1f3625809f472c1ce21089fdae860d9fd.tar.gz |
Bite the bullet and apply the hash randomisation patch.
[perl #22371] Algorimic Complexity Attack on Perl 5.6.1, 5.8.0
p4raw-id: //depot/perl@19854
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index 44d6296941..6d77cec2a1 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -523,6 +523,8 @@ PERLVARI(Irunops_dbg, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_debug)) PERLVARI(Ippid, IV, 0) #endif +PERLVARI(Ihash_seed, UV, 0) /* Hash initializer */ + PERLVAR(IDBassertion, SV *) PERLVARI(Icv_has_eval, I32, 0) /* PL_compcv includes an entereval or similar */ |