summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-25 01:14:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-25 01:14:35 +0000
commit6e368fcc3c515df9402c2b06c89d5964b042a69f (patch)
tree20730260bd4f8f0f5a61851a68e48e273b644986 /dir.c
parent086b1b67eb75dc99065292c89791520861512f66 (diff)
* dir.c (push_braces): do not reuse buffer strings. [ruby-core:03806]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dir.c b/dir.c
index 84476303a0..330a9c5eed 100644
--- a/dir.c
+++ b/dir.c
@@ -1189,9 +1189,6 @@ push_braces(ary, str, flags)
if (lbrace && rbrace) {
int len = strlen(s);
- buf = rb_str_new(0, len+1);
- memcpy(RSTRING(buf)->ptr, s, lbrace-s);
- b = RSTRING(buf)->ptr + (lbrace-s);
p = lbrace;
while (*p != '}') {
t = p + 1;
@@ -1199,6 +1196,9 @@ push_braces(ary, str, flags)
/* skip inner braces */
if (*p == '{') while (*p!='}') p++;
}
+ buf = rb_str_new(0, len+1);
+ memcpy(RSTRING(buf)->ptr, s, lbrace-s);
+ b = RSTRING(buf)->ptr + (lbrace-s);
memcpy(b, t, p-t);
strcpy(b+(p-t), rbrace+1);
status = push_braces(ary, buf, flags);