From 37ae3cd7019378073b7c3bb8754401cd8570dd07 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 2 Jun 2004 18:15:24 +0000 Subject: [PATCH] Fix app_read to return string even if not # terminated (bug #1769) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3131 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_read.c b/apps/app_read.c index 3819afed19..4cba132aa5 100755 --- a/apps/app_read.c +++ b/apps/app_read.c @@ -86,7 +86,7 @@ static int read_exec(struct ast_channel *chan, void *data) if (!res) { ast_stopstream(chan); res = ast_app_getdata(chan, filename, tmp, maxdigits, 0); - if (!res) + if (res > -1) pbx_builtin_setvar_helper(chan, varname, tmp); ast_verbose(VERBOSE_PREFIX_3 "User entered '%s'\n", tmp); }