diff options
Diffstat (limited to '')
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | src/icy_server.c | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,7 @@ ver 0.15.13 (2010/??/??) * output_thread: fix race condition after CANCEL command +* output: + - httpd: fix random data in stream title ver 0.15.12 (2010/07/20) diff --git a/src/icy_server.c b/src/icy_server.c index 486c62c36..50b10c6ca 100644 --- a/src/icy_server.c +++ b/src/icy_server.c @@ -95,6 +95,7 @@ icy_server_metadata_page(const struct tag *tag, ...) gchar stream_title[(1 + 255 - 28) * 16]; // Length + Metadata - // "StreamTitle='';StreamUrl='';" // = 4081 - 28 + stream_title[0] = '\0'; last_item = -1; |