Browse Source

remove superfluous initialization

Change-Id: Ib826154cbb23340d1463158f45b557be0f86485c
pull/256/head
Richard Fuchs 10 years ago
parent
commit
a3c703b302
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      daemon/call.c

+ 0
- 1
daemon/call.c View File

@ -2312,7 +2312,6 @@ static struct call *call_create(const str *callid, struct callmaster *m) {
ilog(LOG_NOTICE, "Creating new call"); ilog(LOG_NOTICE, "Creating new call");
c = obj_alloc0("call", sizeof(*c), __call_free); c = obj_alloc0("call", sizeof(*c), __call_free);
c->recording = NULL;
c->callmaster = m; c->callmaster = m;
mutex_init(&c->buffer_lock); mutex_init(&c->buffer_lock);
call_buffer_init(&c->buffer); call_buffer_init(&c->buffer);


Loading…
Cancel
Save