mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
Unbreak build of threaded perl.
PR: ports/130529 Submitted by: Shin-ichi Yoshimoto <yosimoto xx waishi.jp>
This commit is contained in:
parent
3a30a94cbf
commit
b1b787bb65
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=226051
@ -6,7 +6,7 @@
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr) >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr) >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr) >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr) >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
case SVt_PVAV:
|
||||
- if (AvARRAY((AV*)sstr)) {
|
||||
+ /* avoid cloning an empty array */
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr >= 0) {
|
||||
+ if (AvARRAY((AV*)sstr) && AvFILLp((AV*)sstr) >= 0) {
|
||||
SV **dst_ary, **src_ary;
|
||||
SSize_t items = AvFILLp((AV*)sstr) + 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user