commit - 42281175e016d971dfffd64f2e8f1330fde1fc09
commit + 470cd826969d3cd3ae7ef7fca26b74c1cade591e
blob - be2a106497e1c7a99f0c20632b6d519cebccf898
blob + 5a09e3414b04a8268d9de8abb0a6c1c425b962e5
--- gotweb/gotweb.c
+++ gotweb/gotweb.c
error = gw_get_header(gw_trans, header, 1);
if (error)
- return error;
+ goto done;
tag_html = gw_get_repo_tags(gw_trans, header, 1, TAGFULL);
-
if (tag_html == NULL) {
tag_html = strdup("");
if (tag_html == NULL) {
if ((asprintf(&tag_html_disp, tag_header,
gw_gen_commit_header(header->commit_id, header->refs_str),
gw_gen_commit_msg_header(gw_html_escape(header->commit_msg)),
- tag_html)) == -1)
- return got_error_from_errno("asprintf");
+ tag_html)) == -1) {
+ error = got_error_from_errno("asprintf");
+ goto done;
+ }
- if ((asprintf(&tag, tag_wrapper, tag_html_disp)) == -1)
- return got_error_from_errno("asprintf");
+ if (asprintf(&tag, tag_wrapper, tag_html_disp) == -1) {
+ error = got_error_from_errno("asprintf");
+ goto done;
+ }
kerr = khttp_puts(gw_trans->gw_req, tag);
if (kerr != KCGI_OK)