-
Notifications
You must be signed in to change notification settings - Fork 555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible associative array bug #47
Comments
From PASQUALI@uthscsa.eduI am converting a perl cgi from perl-v5.001 (Solaris 2.5)`to perl-v5.005_03 Since this bug is causing serious problems, is there a patch or does the bug local ($a, $b, $c, %assoc); $a = "a"; $assoc{one} = "11"; &print_values($a, $b, %assoc, $c); sub print_values local($sub_a, $sub_b, %sub_assoc, $sub_c) = @_; print " value passed #1 **$_[0]**\n"; print "\n\n"; print " sub_a **$sub_a**\n"; return; When this code is executed by perl-v5.001 the following results are obtained. value passed #1 **a** sub_a **a** When the code is executed by perl-v5.005_03 the following incorrect results value passed #1 **a** sub_a **a** As one can see, perl has a bug such that it does not find the end of the Thanks for any help in advance! ************************************************* Lee Pasquali 210-567-8100 pasquali@uthscsa.edu ************************************************* |
From PASQUALI@uthscsa.eduPlease not that this ticket is from 7 June 1999 and has been cleared. Thanks
************************************************* Lee Pasquali 210-567-8100 pasquali@uthscsa.edu ************************************************* |
@rspier - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#849 (status was 'resolved')
Searchable as RT849$
The text was updated successfully, but these errors were encountered: