summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/-test-/bug-14834/bug-14384.c4
-rw-r--r--version.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/-test-/bug-14834/bug-14384.c b/ext/-test-/bug-14834/bug-14384.c
index 58abd6d435..0d4103b5d4 100644
--- a/ext/-test-/bug-14834/bug-14384.c
+++ b/ext/-test-/bug-14834/bug-14384.c
@@ -28,8 +28,8 @@ g(MAYBE_UNUSED(VALUE q), void* w)
const int *e = (const int *)w;
const int r = *e++;
const int t = *e++;
- VALUE y[t];
- int u[t];
+ VALUE *y = ALLOCA_N(VALUE, t);
+ int *u = ALLOCA_N(int, t);
rb_profile_frames(r, t, y, u);
}
diff --git a/version.h b/version.h
index 001618fc68..0b76ca4e33 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.6.3"
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 99
+#define RUBY_PATCHLEVEL 100
#define RUBY_RELEASE_YEAR 2019
#define RUBY_RELEASE_MONTH 8