From: William King Date: Thu, 16 Apr 2015 16:52:19 +0000 (-0700) Subject: CID: 1294524 variables not used in the function X-Git-Tag: v1.6.2~614^2~164 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b39c3058ee36480dae97392d0b3d98daaf7a7023;p=thirdparty%2Ffreeswitch.git CID: 1294524 variables not used in the function --- diff --git a/src/switch_vidderbuffer.c b/src/switch_vidderbuffer.c index 55517515a3..8878229098 100644 --- a/src/switch_vidderbuffer.c +++ b/src/switch_vidderbuffer.c @@ -314,10 +314,7 @@ static inline switch_vb_node_t *vb_find_lowest_seq(switch_vb_t *vb) static inline switch_status_t vb_next_packet(switch_vb_t *vb, switch_vb_node_t **nodep) { - switch_vb_node_t *np = NULL, *node = NULL; - switch_status_t status; - - if (np) status = 0, status++; + switch_vb_node_t *node = NULL; if (!vb->target_seq) { if ((node = vb_find_lowest_seq(vb))) {