summaryrefslogtreecommitdiff
path: root/universal.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-05-19 06:52:24 -0400
committerSteffen Mueller <smueller@cpan.org>2014-05-28 15:20:52 +0200
commitc3caa5c3bdbd0ad0bc7ce5e7cd1a8eb5b7ca6a69 (patch)
tree6dc141509d7e032a24af49a9ad0ba9892c7b893c /universal.c
parent40b5a549d4793cde8b4d93ccdd03c16e039440c9 (diff)
downloadperl-c3caa5c3bdbd0ad0bc7ce5e7cd1a8eb5b7ca6a69.tar.gz
Use the C_ARRAY_LENGTH.
Use the C_ARRAY_LENGTH instead of sizeof(c_array)/sizeof(c_array[0]) or sizeof(c_array)/sizeof(type_of_element_in_c_array), and C_ARRAY_END for c_array + C_ARRAY_LENGTH(c_array). While doing this found potential off-by-one error in sv.c:Perl_sv_magic: how > C_ARRAY_LENGTH(PL_magic_data) should probably have been how >= C_ARRAY_LENGTH(PL_magic_data) No tests fail, but this seems to be more of an internal sanity check.
Diffstat (limited to 'universal.c')
-rw-r--r--universal.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/universal.c b/universal.c
index bccc8fb45a..a29696d840 100644
--- a/universal.c
+++ b/universal.c
@@ -1059,8 +1059,7 @@ Perl_boot_core_UNIVERSAL(pTHX)
dVAR;
static const char file[] = __FILE__;
const struct xsub_details *xsub = details;
- const struct xsub_details *end
- = details + sizeof(details) / sizeof(details[0]);
+ const struct xsub_details *end = C_ARRAY_END(details);
do {
newXS_flags(xsub->name, xsub->xsub, file, xsub->proto, 0);