work around gcc bug

This commit is contained in:
Denis Vlasenko 2007-01-28 16:07:45 +00:00
parent 9d938732d0
commit afe488d4bc

View File

@ -535,7 +535,9 @@ static void parse_url(char *src_url, struct host_info *h)
p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
if (!sp) {
h->path = "";
/* gcc 4.1.1 bug: h->path = "" puts "" in rodata! */
static char nullstr[] = "";
h->path = nullstr;
} else if (*sp == '/') {
*sp = '\0';
h->path = sp + 1;