aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-20 17:42:16 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-20 17:42:16 +0000
commitf3d699283df5929c3c91e6873dec74227cca037a (patch)
tree58c78ca8f1c4a356ba0618aab97708d50dcc8e62 /main
parent329bc3e42ae8888f64ae13cffe8bca772dfb27da (diff)
Merged revisions 177664 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r177664 | tilghman | 2009-02-20 11:29:51 -0600 (Fri, 20 Feb 2009) | 8 lines Allow semicolons to be escaped, when passing arguments to the System command. (closes issue #14231) Reported by: jcovert Patches: 20090113__bug14231__2.diff.txt uploaded by Corydon76 (license 14) corrected_20090113__bug14231__2.diff.txt uploaded by jcovert (license 551) Tested by: jcovert ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@177665 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/app.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/main/app.c b/main/app.c
index c9721d58b..3604c6352 100644
--- a/main/app.c
+++ b/main/app.c
@@ -43,6 +43,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/lock.h"
#include "asterisk/indications.h"
#include "asterisk/linkedlists.h"
+#include "asterisk/strings.h"
#define MAX_OTHER_FORMATS 10
@@ -1788,3 +1789,30 @@ int ast_get_encoded_str(const char *stream, char *result, size_t result_size)
return 0;
}
+int ast_str_get_encoded_str(struct ast_str **str, int maxlen, const char *stream)
+{
+ char next, *buf;
+ size_t offset = 0;
+ size_t consumed;
+
+ if (strchr(stream, '\\')) {
+ while (!ast_get_encoded_char(stream, &next, &consumed)) {
+ if (offset + 2 > ast_str_size(*str) && maxlen > -1) {
+ ast_str_make_space(str, maxlen > 0 ? maxlen : (ast_str_size(*str) + 48) * 2 - 48);
+ }
+ if (offset + 2 > ast_str_size(*str)) {
+ break;
+ }
+ buf = ast_str_buffer(*str);
+ buf[offset++] = next;
+ stream += consumed;
+ }
+ buf = ast_str_buffer(*str);
+ buf[offset++] = '\0';
+ ast_str_update(*str);
+ } else {
+ ast_str_set(str, maxlen, "%s", stream);
+ }
+ return 0;
+}
+