if we're going to decrement the frame count when we free a frame, we should inrement it when we create one :-)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@49523 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2007-01-04 21:06:02 +00:00
parent 497dd42772
commit 6b1817c0d1

View File

@@ -976,6 +976,8 @@ struct iax_frame *iax_frame_new(int direction, int datalen, unsigned int cacheab
else
ast_atomic_fetchadd_int(&oframes, 1);
ast_atomic_fetchadd_int(&frames, 1);
return fr;
}