Skip to content

Commit 916376b

Browse files
author
Steve Hay
committed
Fix build for perl >= 5.33.7
Patch by Leon Timmermans <[email protected]> from Perl/perl5#18617 git-svn-id: https://svn.apache.org/repos/asf/perl/modperl/trunk@1889014 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0537fc9 commit 916376b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/perl/modperl_perl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ void modperl_hash_seed_set(pTHX)
268268
#ifdef MP_NEED_HASH_SEED_FIXUP
269269
if (MP_init_hash_seed_set) {
270270
#if MP_PERL_VERSION_AT_LEAST(5, 17, 6)
271-
memcpy(&PL_hash_seed, &MP_init_hash_seed,
271+
memcpy(PL_hash_seed, &MP_init_hash_seed,
272272
sizeof(PL_hash_seed) > sizeof(MP_init_hash_seed) ?
273273
sizeof(MP_init_hash_seed) : sizeof(PL_hash_seed));
274274
PL_hash_seed_set = MP_init_hash_seed_set;

0 commit comments

Comments
 (0)