1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

simple sanity check

svn path=/icecast/trunk/httpp/; revision=9126
This commit is contained in:
Karl Heyes 2005-04-08 03:48:08 +00:00
parent cec0361503
commit 431e4d1ac2

View File

@ -451,6 +451,9 @@ char *httpp_getvar(http_parser_t *parser, char *name)
http_var_t *found;
void *fp;
if (parser == NULL || name == NULL)
return NULL;
fp = &found;
var.name = name;
var.value = NULL;