diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-17 17:56:41 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-17 17:56:41 +0000 |
commit | a0e236f6065e5dfd68ac8a45ad1ca690042d47b9 (patch) | |
tree | 90f0288ab5d9d74e5a9eda04d0e6e1c43b7b701a /pack.c | |
parent | 04351d95585db8baee7cbcf0cf6939cb3cbeaf6c (diff) | |
download | ruby-a0e236f6065e5dfd68ac8a45ad1ca690042d47b9.tar.gz |
* pack.c (pack_pack): check errno to detect error of ruby_strtoul.
* pack.c (pack_unpack): ditto.
* test/ruby/test_pack.rb: add a test for above.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16452 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'pack.c')
-rw-r--r-- | pack.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -12,6 +12,7 @@ #include "ruby/ruby.h" #include <sys/types.h> #include <ctype.h> +#include <errno.h> #define SIZE16 2 #define SIZE32 4 @@ -491,7 +492,11 @@ pack_pack(VALUE ary, VALUE fmt) p++; } else if (ISDIGIT(*p)) { + errno = 0; len = STRTOUL(p, (char**)&p, 10); + if (errno) { + rb_raise(rb_eRangeError, "pack length too big"); + } } else { len = 1; @@ -1350,7 +1355,11 @@ pack_unpack(VALUE str, VALUE fmt) p++; } else if (ISDIGIT(*p)) { + errno = 0; len = STRTOUL(p, (char**)&p, 10); + if (errno) { + rb_raise(rb_eRangeError, "pack length too big"); + } } else { len = (type != '@'); |