diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-03-21 12:20:03 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-03-21 12:20:03 +0000 |
commit | 9c59bb285ff1665cb0f68765e5ef36404adef334 (patch) | |
tree | 30a84f8c04fb21573a9546cd871f5d75e055bf2c /sv.c | |
parent | 1307ca853d9a942ef19dd71e17b80548b62f88bf (diff) | |
download | perl-9c59bb285ff1665cb0f68765e5ef36404adef334.tar.gz |
AVs and HVs never had the NV slot. (Not that this error mattered, as
you can't upgrade from them, and the only code path that uses the
flag in sv_upgrade isn't reached when upgrading to AVs or HVs)
p4raw-id: //depot/perl@30658
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -928,13 +928,13 @@ static const struct body_details bodies_by_type[] = { copy_length(XPVAV, xmg_stash) - relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill), + relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill), - SVt_PVAV, TRUE, HADNV, HASARENA, FIT_ARENA(0, sizeof(xpvav_allocated)) }, + SVt_PVAV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvav_allocated)) }, { sizeof(xpvhv_allocated), copy_length(XPVHV, xmg_stash) - relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill), + relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill), - SVt_PVHV, TRUE, HADNV, HASARENA, FIT_ARENA(0, sizeof(xpvhv_allocated)) }, + SVt_PVHV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvhv_allocated)) }, /* 56 */ { sizeof(xpvcv_allocated), sizeof(xpvcv_allocated), |