]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 287120 via svnmerge from
authorMatthew Nicholson <mnicholson@digium.com>
Thu, 16 Sep 2010 20:08:51 +0000 (20:08 +0000)
committerMatthew Nicholson <mnicholson@digium.com>
Thu, 16 Sep 2010 20:08:51 +0000 (20:08 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.8

................
  r287120 | mnicholson | 2010-09-16 15:07:38 -0500 (Thu, 16 Sep 2010) | 22 lines

  Merged revisions 287119 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2

  ................
    r287119 | mnicholson | 2010-09-16 15:06:16 -0500 (Thu, 16 Sep 2010) | 15 lines

    Merged revisions 287118 via svnmerge from
    https://origsvn.digium.com/svn/asterisk/branches/1.4

    ........
      r287118 | mnicholson | 2010-09-16 15:04:46 -0500 (Thu, 16 Sep 2010) | 8 lines

      Don't limit hint processing in ast_hint_state_changed() to AST_MAX_EXTENSION length strings.

      (closes issue #17928)
      Reported by: mdu113
      Patches:
            20100831__issue17928.diff.txt uploaded by tilghman (license 14)
      Tested by: mdu113
    ........
  ................
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@287121 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/pbx.c

index 8e20f8686abf3766788a413d46ecc569837f5601..546cc8fca458ac97ee99be662dbfd95f3114223b 100644 (file)
@@ -4225,12 +4225,10 @@ static int handle_statechange(void *datap)
 
        AST_RWLIST_TRAVERSE(&hints, hint, list) {
                struct ast_state_cb *cblist;
-               char buf[AST_MAX_EXTENSION];
-               char *parse = buf;
+               char *parse = ast_strdupa(ast_get_extension_app(hint->exten));
                char *cur;
                int state;
 
-               ast_copy_string(buf, ast_get_extension_app(hint->exten), sizeof(buf));
                while ( (cur = strsep(&parse, "&")) ) {
                        if (!strcasecmp(cur, sc->dev)) {
                                break;