fix uninitialized error in webui.c, fixes #2725

This commit is contained in:
Jaroslav Kysela 2015-03-22 18:01:09 +01:00
parent 023563f602
commit 0b548808a7

View file

@ -805,7 +805,7 @@ http_stream_mux(http_connection_t *hc, mpegts_mux_t *mm, int weight)
const char *name, *str;
char addrbuf[50];
void *tcp_id;
char *p, *saveptr;
char *p, *saveptr = NULL;
mpegts_apids_t pids;
mpegts_service_t *ms;
int res = HTTP_STATUS_SERVICE, i;