summaryrefslogtreecommitdiff
path: root/main/file.c
diff options
context:
space:
mode:
authorMatthew Nicholson <mnicholson@digium.com>2010-01-08 19:32:11 +0000
committerMatthew Nicholson <mnicholson@digium.com>2010-01-08 19:32:11 +0000
commit98b69d84e1117fcd5ca8851110c26fa431f57c43 (patch)
treee8c8ffddeff2bff508f742817ec151e754088ac4 /main/file.c
parent7df5564a61f131991541de75323f885c702b63ba (diff)
Merged revisions 238629 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r238629 | mnicholson | 2010-01-08 13:20:44 -0600 (Fri, 08 Jan 2010) | 5 lines Properly calculate the remaining space in the output string when reducing format strings. (closes issue #16560) Reported by: goldwein ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@238630 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/file.c')
-rw-r--r--main/file.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/main/file.c b/main/file.c
index 075062ba3..a5f85ffd5 100644
--- a/main/file.c
+++ b/main/file.c
@@ -1356,6 +1356,7 @@ char *ast_format_str_reduce(char *fmts)
char *orig = fmts;
int i, j, x, first, found = 0;
int len = strlen(fmts) + 1;
+ int res;
if (AST_RWLIST_RDLOCK(&formats)) {
ast_log(LOG_WARNING, "Unable to lock format list\n");
@@ -1391,8 +1392,9 @@ char *ast_format_str_reduce(char *fmts)
/* special handling for the first entry */
if (first) {
- fmts += snprintf(fmts, len, "%s", fmts_str[i]);
- len -= (fmts - orig);
+ res = snprintf(fmts, len, "%s", fmts_str[i]);
+ fmts += res;
+ len -= res;
first = 0;
continue;
}
@@ -1407,8 +1409,9 @@ char *ast_format_str_reduce(char *fmts)
}
if (!found) {
- fmts += snprintf(fmts, len, "|%s", fmts_str[i]);
- len -= (fmts - orig);
+ res = snprintf(fmts, len, "|%s", fmts_str[i]);
+ fmts += res;
+ len -= res;
}
}