diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-17 01:29:17 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-17 01:29:17 +0000 |
| commit | 68fb85a36ad39d5594c1ecfbf985d56e73adcaa5 (patch) | |
| tree | 7873fbf3dad59cb2042390c1c2dbfe90d5b6e647 /re.c | |
| parent | 61618d9b634c10e93dcb2496b2955581cf4871e4 (diff) | |
| download | ruby-68fb85a36ad39d5594c1ecfbf985d56e73adcaa5.tar.gz ruby-68fb85a36ad39d5594c1ecfbf985d56e73adcaa5.tar.xz ruby-68fb85a36ad39d5594c1ecfbf985d56e73adcaa5.zip | |
* dir.c, dln.c, parse.y, re.c, ruby.c, sprintf.c, strftime.c,
string.c, util.c, variable.c: use strlcpy, memcpy and snprintf
instead of strcpy, strncpy and sprintf.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
| -rw-r--r-- | re.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -366,7 +366,7 @@ rb_reg_expr_str(VALUE str, const char *s, long len) else if (!rb_enc_isspace(c, enc)) { char b[8]; - sprintf(b, "\\x%02X", c); + snprintf(b, sizeof(b), "\\x%02X", c); rb_str_buf_cat(str, b, 4); } else { |
