diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-07-07 03:03:19 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-07-07 03:03:19 +0000 |
commit | 2520f3f79c0b65894cea4914c041f06b8d29b41a (patch) | |
tree | b7267f00b5a25c931572ae65de4ac3ef2606cb43 /file.c | |
parent | 01e1a0ac78217f912115df046f5ae07dc146176f (diff) | |
download | ruby-2520f3f79c0b65894cea4914c041f06b8d29b41a.tar.gz |
* file.c (ruby_find_basename): should initialize f.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3436,7 +3436,7 @@ ruby_find_basename(const char *name, long *len, long *ext) #if defined DOSISH_DRIVE_LETTER || defined DOSISH_UNC const char *root; #endif - long f, n = -1; + long f = 0, n = -1; name = skipprefix(name); #if defined DOSISH_DRIVE_LETTER || defined DOSISH_UNC |