Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix uninitialized error in webui.c, fixes #2725
  • Loading branch information
perexg committed Mar 22, 2015
1 parent 023563f commit 0b54880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/webui.c
Expand Up @@ -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;
Expand Down

0 comments on commit 0b54880

Please sign in to comment.