From 5dc2c3c889933b8a426c658f3792849f0b4b98a8 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 19 Jul 2005 13:52:42 +0000 Subject: * error.c (syserr_initialize): need to allocate an additional byte for NUL at the end. [ruby-dev:26574] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ error.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3640a30cb..24ee768ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Jul 19 22:47:29 2005 Yukihiro Matsumoto + + * error.c (syserr_initialize): need to allocate an additional byte + for NUL at the end. [ruby-dev:26574] + Tue Jul 19 16:39:46 2005 Yukihiro Matsumoto * io.c (rb_io_inspect): replace sprintf() with "%s" format all diff --git a/error.c b/error.c index 0b63aa051..7dacac8ce 100644 --- a/error.c +++ b/error.c @@ -907,7 +907,7 @@ syserr_initialize(argc, argv, self) else err = "unknown error"; if (!NIL_P(mesg)) { VALUE str = mesg; - size_t len = strlen(err)+RSTRING(str)->len+3; + size_t len = strlen(err)+RSTRING(str)->len+4; StringValue(str); mesg = rb_str_new(0, len); snprintf(RSTRING(mesg)->ptr, len, "%s - %.*s", err, -- cgit