Merge pull request #55 from ackalker/fix-unitialized-variable

Fix unitialized variable
This commit is contained in:
Andreas Öman 2012-02-22 05:40:49 -08:00
commit 4bb1566bd9

View file

@ -92,6 +92,7 @@ serviceprobe_thread(void *aux)
streaming_queue_init(&sq, 0);
err = NULL;
while(1) {
while((t = TAILQ_FIRST(&serviceprobe_queue)) == NULL) {