To detect memory leaks earlier.
+ assert(http->dbuffer == NULL);
http->dbuffer = strdup_or_die(http->host);
/* map to lower case */
http->dbuffer = strdup_or_die(http->host);
/* map to lower case */
/* save a copy of the pointers in dvec */
size = (size_t)http->dcount * sizeof(*http->dvec);
/* save a copy of the pointers in dvec */
size = (size_t)http->dcount * sizeof(*http->dvec);
+ assert(http->dvec == NULL);
http->dvec = malloc_or_die(size);
memcpy(http->dvec, vec, size);
http->dvec = malloc_or_die(size);
memcpy(http->dvec, vec, size);