From bd7ca4b764c604b1e09de691a89687b444dc32e8 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 2 Oct 2009 00:08:21 +0000 Subject: [PATCH] One more off-by-one in trunk git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@221781 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/say.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/say.c b/main/say.c index 5e3ae96d9b..7f79273084 100644 --- a/main/say.c +++ b/main/say.c @@ -4212,7 +4212,7 @@ int ast_say_date_with_format_th(struct ast_channel *chan, time_t t, const char * case '\'': /* Literal name of a sound file */ sndoffset=0; - for (sndoffset=0 ; (format[++offset] != '\'') && (sndoffset < 256) ; sndoffset++) + for (sndoffset=0 ; (format[++offset] != '\'') && (sndoffset < sizeof(sndfile) - 1) ; sndoffset++) sndfile[sndoffset] = format[offset]; sndfile[sndoffset] = '\0'; res = wait_file(chan, ints, sndfile, lang);