summaryrefslogtreecommitdiff
path: root/main/say.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-10-02 00:08:21 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-10-02 00:08:21 +0000
commitbd7ca4b764c604b1e09de691a89687b444dc32e8 (patch)
treee9bda7b984350de4059d5dfc8f2e340178e9cb1d /main/say.c
parent8c7b3cf7384bb128cd9b7b46fb0f19f86df6e96a (diff)
One more off-by-one in trunk
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@221781 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/say.c b/main/say.c
index 5e3ae96d9..7f7927308 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);