git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1969
d4fa192b-c00b-0410-8231-
f00ffab90ce4
be = t->bentry;
while (be != NULL) {
bs = calloc(sizeof *bs, 1);
+ XXXAN(bs);
bs->magic = BRSPEC_MAGIC;
AN(be->port);
bs->portname = strdup(be->port);
bs_prev = bs;
be = be->next;
}
-
+ XXXAN(bs_first);
bs_first->next = bs;
ber->blist = bs;
be = t->bentry;
while (be != NULL) {
bs = calloc(sizeof *bs, 1);
+ XXXAN(bs);
bs->magic = BSPEC_MAGIC;
AN(be->port);
bs->portname = strdup(be->port);
be = be->next;
}
+ XXXAN(bs_first);
bs_first->next = bs;
brr->blist = bs;
*/
http_Unset(sp->http, H_Date);
time_str = malloc(50);
+ XXXAN(time_str);
sprintf(time_str, "Date: ");
TIM_format(TIM_real(), &(time_str[6]));
http_SetHeader(sp->wrk, sp->fd, sp->http, time_str);