Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix epggrab to close accepted socket after grabbing
  • Loading branch information
axfree authored and perexg committed Apr 1, 2016
1 parent 442e6e6 commit 25f2e54
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/epggrab/module.c
Expand Up @@ -463,6 +463,7 @@ static void *_epggrab_socket_thread ( void *p )
if (s <= 0) continue;
tvhlog(LOG_DEBUG, mod->id, "got connection %d", s);
_epggrab_socket_handler(mod, s);
close(s);
}
tvhlog(LOG_DEBUG, mod->id, "terminated");
return NULL;
Expand Down

0 comments on commit 25f2e54

Please sign in to comment.