aboutsummaryrefslogtreecommitdiffstats
path: root/dir.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-01-09 13:58:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-01-09 13:58:49 +0000
commit78d6e3370238c47d5933703fb55d5ab9e8bc4692 (patch)
tree2f9b875ccab85df48503ae0d95727c5c2108765c /dir.c
parentdf0faba1ff958590a02fd668afbf2b525e845b54 (diff)
downloadruby-78d6e3370238c47d5933703fb55d5ab9e8bc4692.tar.gz
Fix styles [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66762 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index 2f38e35976..2196344fc3 100644
--- a/dir.c
+++ b/dir.c
@@ -2061,7 +2061,8 @@ join_path_from_pattern(struct glob_pattern **beg)
path = GLOB_ALLOC_N(char, path_len + 1);
memcpy(path, str, path_len);
path[path_len] = '\0';
- } else {
+ }
+ else {
size_t len = strlen(str);
char *tmp;
tmp = GLOB_REALLOC(path, path_len + len + 2);