diff options
author | Craig A. Berry <craigberry@mac.com> | 2007-11-15 20:49:26 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-11-15 20:49:26 +0000 |
commit | 2da7a6b5eab232c468b68576568f84877f032fd6 (patch) | |
tree | 40a61e2b29d752f967d704b816cc4cd50056be81 /vms | |
parent | 7975e7c1b083ab9cf41ec047e6e53ed2c94f8063 (diff) | |
download | perl-2da7a6b5eab232c468b68576568f84877f032fd6.tar.gz |
In Perl_vms_start_glob, when we don't have any matches and thus
return the input pattern, that doesn't mean clobber the input
scalar. Follow-up to change 30813.
p4raw-id: //depot/perl@32329
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vms.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12876,9 +12876,9 @@ Perl_vms_start_glob if (!found) { /* Be POSIXish: return the input pattern when no matches */ - begin = SvPVX(tmpglob); - strcat(begin,"\n"); - ok = (PerlIO_puts(tmpfp,begin) != EOF); + strcpy(rstr,SvPVX(tmpglob)); + strcat(rstr,"\n"); + ok = (PerlIO_puts(tmpfp,rstr) != EOF); } if (ok && sts != RMS$_NMF && |