aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-09 18:42:16 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-09 18:42:16 +0000
commit46b49149a6737567fb05a8687c55ffb17abfbad0 (patch)
treeb0d904711d5ec94da000afccc49d0e9dba1c287f /res
parentbab950573d219988466ea4251210e9e75ee390a3 (diff)
Merged revisions 168090 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r168090 | tilghman | 2009-01-09 12:30:55 -0600 (Fri, 09 Jan 2009) | 3 lines When using ast_str with a non-ast_str-enabled API, we need to update the buffer or otherwise, we cannot use ast_str_strlen(). ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@168092 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 5fcfdb878..f91cb7ca0 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -1619,6 +1619,7 @@ static int handle_dbget(struct ast_channel *chan, AGI *agi, int argc, char **arg
do {
res = ast_db_get(argv[2], argv[3], buf->str, buf->len);
+ buf->used = strlen(buf->str);
if (buf->used < buf->len - 1) {
break;
}