1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

fixing some compiler warnings

svn path=/icecast/trunk/icecast/; revision=19280
This commit is contained in:
Philipp Schafft 2014-11-07 23:10:43 +00:00
parent 78ca9bd2ba
commit fc63b67b87
3 changed files with 8 additions and 0 deletions

View File

@ -232,7 +232,9 @@ void config_clear(ice_config_t *c)
relay_server *relay, *nextrelay; relay_server *relay, *nextrelay;
mount_proxy *mount, *nextmount; mount_proxy *mount, *nextmount;
aliases *alias, *nextalias; aliases *alias, *nextalias;
#ifdef USE_YP
int i; int i;
#endif
free(c->config_filename); free(c->config_filename);

View File

@ -17,6 +17,7 @@
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include <ogg/ogg.h> #include <ogg/ogg.h>
typedef struct source_tag source_t; typedef struct source_tag source_t;

View File

@ -505,12 +505,17 @@ static inline void _build_headers_loop(char **ret, size_t *len, ice_config_htt
name = header->name; name = header->name;
/* handle type of the header */ /* handle type of the header */
value = NULL;
switch (header->type) { switch (header->type) {
case HTTP_HEADER_TYPE_STATIC: case HTTP_HEADER_TYPE_STATIC:
value = header->value; value = header->value;
break; break;
} }
/* check data */
if (!name || !value)
continue;
/* append the header to the buffer */ /* append the header to the buffer */
headerlen = strlen(name) + strlen(value) + 4; headerlen = strlen(name) + strlen(value) + 4;
*len += headerlen; *len += headerlen;