]> git.ipfire.org Git - thirdparty/asterisk.git/commit
Blocked revisions 208622 via svnmerge
authorMark Michelson <mmichelson@digium.com>
Fri, 24 Jul 2009 19:33:54 +0000 (19:33 +0000)
committerMark Michelson <mmichelson@digium.com>
Fri, 24 Jul 2009 19:33:54 +0000 (19:33 +0000)
commita564e9b9447487b8005cdb13e2f814564a14bd85
tree666f9a1c6ba79f5e6ce744b08548f9b1dcbc2ef7
parent765d10231b2030775377c65c39c4daf51d8b8426
Blocked revisions 208622 via svnmerge

........
  r208622 | mmichelson | 2009-07-24 14:24:28 -0500 (Fri, 24 Jul 2009) | 16 lines

  Don't impose an arbitrary limit on member lines in queues.conf

  I know what some of you are thinking: "UGH! Mark, why are you using
  ast_strdup and ast_free for the string when you can just use ast_strdupa
  and let the memory free itself?! Have the bats been chewing on your brain
  again?"

  Based on past experiences, I don't like using ast_strdupa inside a loop.
  It's a good way to potentially exhaust stack space. Also, since this only
  happens when reloading queues, I don't think that heap allocations and
  frees are going to be a huge problem.

  (closes issue #15559)
  Reported by: amorsen
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@208655 65c4cc65-6c06-0410-ace0-fbb531ad65f3
apps/app_queue.c