summaryrefslogtreecommitdiff
path: root/channels/sip/reqresp_parser.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2011-03-23 02:51:09 +0000
committerTerry Wilson <twilson@digium.com>2011-03-23 02:51:09 +0000
commit82ef85f20b189d2a63d5ac1d268fdc674c8bd653 (patch)
tree66336f9e63368026e5c2a4724a016951247e4419 /channels/sip/reqresp_parser.c
parent7902813301bd2e08cfa627c94ee119a5123311b6 (diff)
Merged revisions 311558 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r311558 | twilson | 2011-03-22 19:24:53 -0700 (Tue, 22 Mar 2011) | 5 lines Don't use static declared buf in parse_name_andor_addr This function isn't used anywhere yet, but we definitely don't want to keep the same value for buf between calls to the function. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@311559 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/sip/reqresp_parser.c')
-rw-r--r--channels/sip/reqresp_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/sip/reqresp_parser.c b/channels/sip/reqresp_parser.c
index ecea91f0c..a40054ac0 100644
--- a/channels/sip/reqresp_parser.c
+++ b/channels/sip/reqresp_parser.c
@@ -1128,7 +1128,7 @@ int parse_name_andor_addr(char *uri, const char *scheme, char **name,
struct uriparams *params, char **headers,
char **residue)
{
- static char buf[1024];
+ char buf[1024];
char **residue2=residue;
int ret;
if (name) {