Merge pull request #713 in FS/freeswitch from ~PIOTRGREGOR/freeswitch:bugfix/FS-8854-initialize-circular-buffer to master

* commit '3af3e54a6f287b9b045cbe62249b5eecde2b4f80':
  FS-8854 initialize circular buffer
This commit is contained in:
Mike Jerris 2016-03-10 14:09:06 -06:00
commit 9f9078b6f6
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ extern size_t next_power_of_2(size_t v);
(bf)->pos = 0; \
(bf)->lpos = 0; \
(bf)->backlog = 0; \
(bf)->i = 0; \
}
//#define DESTROY_CIRC_BUFFER(b) free((b)->buf)